mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Downgrade the ERROR log printed when twi is executed in interpreter to DEBUG
This commit is contained in:
parent
562c0d7ad7
commit
2ac2cbbcf6
@ -149,7 +149,7 @@ void Interpreter::twi(UGeckoInstruction _inst)
|
||||
s32 b = _inst.SIMM_16;
|
||||
s32 TO = _inst.TO;
|
||||
|
||||
ERROR_LOG(POWERPC, "twi rA %x SIMM %x TO %0x", a, b, TO);
|
||||
DEBUG_LOG(POWERPC, "twi rA %x SIMM %x TO %0x", a, b, TO);
|
||||
|
||||
if (((a < b) && (TO & 0x10)) ||
|
||||
((a > b) && (TO & 0x08)) ||
|
||||
|
Loading…
Reference in New Issue
Block a user