Downgrade the ERROR log printed when twi is executed in interpreter to DEBUG

This commit is contained in:
Zhuowei Zhang 2014-09-06 22:36:17 -04:00
parent 562c0d7ad7
commit 2ac2cbbcf6

View file

@ -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)) ||