From a54cb3178de62597aadb67b499b6bc38fa2844db Mon Sep 17 00:00:00 2001 From: drfrag Date: Mon, 14 Dec 2020 00:52:12 +0100 Subject: [PATCH] - Fixed bad export of ChangeLevel to ZScript, but still doesn't work. --- src/g_level.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_level.cpp b/src/g_level.cpp index d46be2d6b..a738710fd 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -701,7 +701,7 @@ void G_ChangeLevel(const char *levelname, int position, int flags, int nextSkill DEFINE_ACTION_FUNCTION_NATIVE(FLevelLocals, ChangeLevel, G_ChangeLevel) { - PARAM_SELF_STRUCT_PROLOGUE(FLevelLocals); + PARAM_PROLOGUE; PARAM_STRING(levelname); PARAM_INT(position); PARAM_INT(inflags);