pcsx2: fallback to the interpreter if bad register allocation

This commit is contained in:
Gregory Hainaut 2015-10-21 13:16:51 +02:00
parent 796f831296
commit a4c37d7f51
1 changed files with 2 additions and 5 deletions

View File

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