From 2ac2cbbcf6c70c23f1a8d29c1d8f4a1314c4f378 Mon Sep 17 00:00:00 2001 From: Zhuowei Zhang Date: Sat, 6 Sep 2014 22:36:17 -0400 Subject: [PATCH] Downgrade the ERROR log printed when twi is executed in interpreter to DEBUG --- Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp index bac0ac1a18..35ecb9f810 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp @@ -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)) ||