Merge pull request #1011 from zhuowei/remove_twi_spam
Downgrade the ERROR log printed when twi is executed in interpreter to DEBUG
This commit is contained in:
commit
213c9a6ba7
|
@ -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