From 29d7e11937191006a07d3df331a732b237b1029a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 16 Nov 2018 18:50:34 +0100 Subject: [PATCH] - fixed last commit. --- src/scripting/vm/vm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/vm/vm.h b/src/scripting/vm/vm.h index 11f5c6030..4b8bb7450 100644 --- a/src/scripting/vm/vm.h +++ b/src/scripting/vm/vm.h @@ -379,7 +379,7 @@ int VMCall(VMFunction *func, VMValue *params, int numparams, VMReturn *results, inline int VMCallWithDefaults(VMFunction *func, VMValue *params, int numparams, VMReturn *results, int numresults/*, VMException **trap = NULL*/) { - VMCall(func, params, numparams, results, numresults); + return VMCall(func, params, numparams, results, numresults); } // Use this in the prototype for a native function.