1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

ppu: Make install function log message trace

This commit is contained in:
Eladash 2023-07-24 10:34:04 +03:00 committed by Elad Ashkenazi
parent c9f91ecee9
commit a6e8b9037a

View File

@ -4316,7 +4316,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
ppu_register_function_at(func.addr, 4, addr);
if (g_cfg.core.ppu_debug)
ppu_log.notice("Installing function %s at 0x%x: %p (reloc = 0x%x)", name, func.addr, ppu_ref(func.addr), reloc);
ppu_log.trace("Installing function %s at 0x%x: %p (reloc = 0x%x)", name, func.addr, ppu_ref(func.addr), reloc);
}
jit_mod.init = true;
@ -4335,7 +4335,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
ppu_register_function_at(func.addr, 4, addr);
if (g_cfg.core.ppu_debug)
ppu_log.notice("Reinstalling function at 0x%x: %p (reloc=0x%x)", func.addr, ppu_ref(func.addr), reloc);
ppu_log.trace("Reinstalling function at 0x%x: %p (reloc=0x%x)", func.addr, ppu_ref(func.addr), reloc);
}
index = 0;