From 0af1352020dc011dabc3b6962fbc9192b02e9c32 Mon Sep 17 00:00:00 2001 From: Fiora Date: Mon, 8 Sep 2014 21:07:58 -0700 Subject: [PATCH] JIT: fix running in debug mode Regression in 7fb6628. --- Source/Core/Core/PowerPC/Jit64/JitAsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp index 40eb726db7..38dc4ce28e 100644 --- a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp +++ b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp @@ -25,7 +25,7 @@ void Jit64AsmRoutineManager::Generate() const u8* outerLoop = GetCodePtr(); ABI_CallFunction(reinterpret_cast(&CoreTiming::Advance)); - FixupBranch skipToRealDispatch = J(); //skip the sync and compare first time + FixupBranch skipToRealDispatch = J(Core::g_CoreStartupParameter.bEnableDebugging); //skip the sync and compare first time dispatcher = GetCodePtr(); // The result of slice decrementation should be in flags if somebody jumped here