Fix possible log formatting errors.

This commit is contained in:
C.W. Betts
2021-02-04 17:54:51 -07:00
parent 01b3b5066d
commit 662d6e9711
10 changed files with 15 additions and 15 deletions

View File

@ -919,7 +919,7 @@ ALWAYS_INLINE static TickCount DoEXP3Access(u32 offset, u32& value)
{
if constexpr (type == MemoryAccessType::Read)
{
Log_WarningPrintf("EXP3 read: 0x%08X -> 0x%08X", EXP3_BASE | offset);
Log_WarningPrintf("EXP3 read: 0x%08X -> 0x%08X", offset, EXP3_BASE | offset);
value = UINT32_C(0xFFFFFFFF);
return 0;