From 9dbb1d77ce95484dac36f71ad8f8b446833fd7c5 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Tue, 27 Nov 2018 17:02:51 +0100 Subject: [PATCH] - fix compile error --- src/scripting/vm/jit_call.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/vm/jit_call.cpp b/src/scripting/vm/jit_call.cpp index c3c1802ed5..c4e58f260f 100644 --- a/src/scripting/vm/jit_call.cpp +++ b/src/scripting/vm/jit_call.cpp @@ -42,7 +42,7 @@ void JitCompiler::EmitVtbl(const VMOP *op) void JitCompiler::EmitCALL() { - EmitVMCall(regA[A]); + EmitVMCall(regA[A], nullptr); pc += C; // Skip RESULTs }