Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a JIT timing bug that prevented Eternal Darkness from booting i…
…n Single Core mode.
  • Loading branch information
skidau committed Feb 22, 2013
1 parent 29d43ef commit d76ca57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/PowerPC/Jit64/Jit.cpp
Expand Up @@ -338,7 +338,7 @@ void Jit64::WriteRfiExitDestInEAX()
Cleanup();
ABI_CallFunction(reinterpret_cast<void *>(&PowerPC::CheckExceptions));
SUB(32, M(&CoreTiming::downcount), js.downcountAmount > 127 ? Imm32(js.downcountAmount) : Imm8(js.downcountAmount));
JMP(asm_routines.dispatcher, true);
JMP(asm_routines.outerLoop, true);
}

void Jit64::WriteExceptionExit()
Expand Down

0 comments on commit d76ca57

Please sign in to comment.