From adc2396f311458372eb35595525e0e7a46f0f8bf Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 24 Dec 2022 15:41:37 +1100 Subject: [PATCH] - Duke: Extend fix from previous commit to appropriately resize the `VMValue` array also. --- source/games/duke/src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/game.cpp b/source/games/duke/src/game.cpp index 2a43d52f4..13b97375e 100644 --- a/source/games/duke/src/game.cpp +++ b/source/games/duke/src/game.cpp @@ -516,7 +516,7 @@ bool CallAnimate(DDukeActor* actor, tspritetype* tspr) IFVIRTUALPTR(actor, DDukeActor, animate) { VMReturn ret(& nval); - VMValue val[3] = { actor, tspr }; + VMValue val[2] = { actor, tspr }; VMCall(func, val, 2, &ret, 1); } return nval;