From a4c37d7f51e69dba169067c50b1be7917db5ae67 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Wed, 21 Oct 2015 13:16:51 +0200 Subject: [PATCH] pcsx2: fallback to the interpreter if bad register allocation --- pcsx2/x86/ix86-32/iR5900-32.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pcsx2/x86/ix86-32/iR5900-32.cpp b/pcsx2/x86/ix86-32/iR5900-32.cpp index 1d1c9c1251..664f98216e 100644 --- a/pcsx2/x86/ix86-32/iR5900-32.cpp +++ b/pcsx2/x86/ix86-32/iR5900-32.cpp @@ -1479,13 +1479,10 @@ void recompileNextInstruction(int delayslot) try { opcode.recompile(); } catch (Exception::FailedToAllocateRegister&) { - // TODO: fallback to interpreter + // Fall back to the interpreter + recCall(opcode.interpret); #if 0 - iFlushCall(FLUSH_INTERPRETER); - CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::MMI::PMFHL ); -#endif // TODO: Free register ? -#if 0 // _freeXMMregs(); // _freeMMXregs(); #endif