From 758ee5cbfbff014f9b17fb10aa6f470068952548 Mon Sep 17 00:00:00 2001 From: Jonathan Russell Date: Fri, 17 Aug 2018 19:15:27 +0100 Subject: [PATCH] - forgot to turn off debug switch in last commit --- src/scripting/vm/jit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/vm/jit.cpp b/src/scripting/vm/jit.cpp index 6325b6449..c0a9d6721 100644 --- a/src/scripting/vm/jit.cpp +++ b/src/scripting/vm/jit.cpp @@ -270,7 +270,7 @@ void emitComparisonOpcode(asmjit::X86Compiler& cc, const TArray& JitFuncPtr JitCompile(VMScriptFunction *sfunc) { -#if 1 // For debugging +#if 0 // For debugging if (strcmp(sfunc->Name.GetChars(), "EmptyFunction") != 0) return nullptr; #else