Skip to content

Commit

Permalink
Merge pull request #1106 from FioraAeterna/fixdebug2
Browse files Browse the repository at this point in the history
JIT: fix debug mode
  • Loading branch information
Sonicadvance1 committed Sep 19, 2014
2 parents 68d62c3 + cd7853b commit a8abbda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/JitAsm.cpp
Expand Up @@ -75,7 +75,7 @@ void Jit64AsmRoutineManager::Generate()
ABI_CallFunction(reinterpret_cast<void *>(&PowerPC::CheckBreakPoints));
ABI_PopRegistersAndAdjustStack(0, 0);
TEST(32, M((void*)PowerPC::GetStatePtr()), Imm32(0xFFFFFFFF));
dbg_exit = J_CC(CC_NZ);
dbg_exit = J_CC(CC_NZ, true);
SetJumpTarget(notStepping);
}

Expand Down

0 comments on commit a8abbda

Please sign in to comment.