diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp index e8731b8c2a..3475eb4073 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp @@ -499,8 +499,7 @@ void Interpreter::divwx(UGeckoInstruction inst) { if (inst.OE) { - // should set OV - PanicAlert("OE: divwx"); + SetXER_OV(true); } if (((u32)a & 0x80000000) && b == 0) @@ -526,8 +525,7 @@ void Interpreter::divwux(UGeckoInstruction inst) { if (inst.OE) { - // should set OV - PanicAlert("OE: divwux"); + SetXER_OV(true); } rGPR[inst.RD] = 0;