Jit64: turn short jmp into near jmp

Fixes a regression from #1856's ac54c6a.
This commit is contained in:
Tillmann Karras 2015-02-13 07:51:34 +01:00
parent 6797718950
commit d33e760c55
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ void Jit64AsmRoutineManager::Generate()
// Jit might have cleared the code cache // Jit might have cleared the code cache
ResetStack(); ResetStack();
JMP(dispatcherNoCheck); // no point in special casing this JMP(dispatcherNoCheck, true); // no point in special casing this
SetJumpTarget(bail); SetJumpTarget(bail);
doTiming = GetCodePtr(); doTiming = GetCodePtr();