mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
logging: minor trace optimizations
This commit is contained in:
parent
a90858193e
commit
16f869fe5a
9 changed files with 36 additions and 17 deletions
|
|
@ -2267,7 +2267,7 @@ static T ppu_load_acquire_reservation(ppu_thread& ppu, u32 addr)
|
|||
ppu.use_full_rdata = false;
|
||||
}
|
||||
|
||||
if ((addr & addr_mask) == (ppu.last_faddr & addr_mask))
|
||||
if (ppu_log.trace && (addr & addr_mask) == (ppu.last_faddr & addr_mask))
|
||||
{
|
||||
ppu_log.trace(u8"LARX after fail: addr=0x%x, faddr=0x%x, time=%u c", addr, ppu.last_faddr, (perf0.get() - ppu.last_ftsc));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue