From ee3c41bf7bc75b4702ccd17d9d724f1bbba5b928 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 6 Feb 2016 00:19:38 +0100 Subject: [PATCH] - fixed: The minimum parameter count for an action function is 3, so the DEHSUPP parser needs to take this into account when validating the code pointers. --- src/d_dehacked.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_dehacked.cpp b/src/d_dehacked.cpp index 5f784e6de0..b6ae7d0bbf 100644 --- a/src/d_dehacked.cpp +++ b/src/d_dehacked.cpp @@ -2723,9 +2723,9 @@ static bool LoadDehSupp () else { TArray &args = sym->Variants[0].ArgFlags; - if (args.Size() != 0 && !(args[0] & VARF_Optional)) + if (args.Size() > 3 && !(args[3] & VARF_Optional)) { - sc.ScriptError("Incompatible code pointer '%s'", sc.String); + sc.ScriptMessage("Incompatible code pointer '%s' %d, %d", sc.String, args.Size(), args.Size() > 3? args[3] : 0); } } Actions.Push(sym);