From c359601737bc542ec558bebbd950d9d6d426d894 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Thu, 13 Sep 2018 19:03:30 +0200 Subject: [PATCH] - fix opcodes not being listed in jit debug assembly --- 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 b305b13fbe..6d2fd7d765 100644 --- a/src/scripting/vm/jit.cpp +++ b/src/scripting/vm/jit.cpp @@ -94,7 +94,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc) static const char *OpNames[NUM_OPS] = { -#define xx(op, name, mode, alt, kreg, ktype) #op +#define xx(op, name, mode, alt, kreg, ktype) #op, #include "vmops.h" #undef xx };