From 52ea497b5071b8216324f961b3619e9d6bec172b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 19 Dec 2022 18:02:32 +0100 Subject: [PATCH] - fixed lotsofstuff VM export. --- source/games/duke/src/vmexports.cpp | 2 +- wadsrc/static/zscript/games/duke/dukeactor.zs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/vmexports.cpp b/source/games/duke/src/vmexports.cpp index 68c805c98..d0a2ce78b 100644 --- a/source/games/duke/src/vmexports.cpp +++ b/source/games/duke/src/vmexports.cpp @@ -380,7 +380,7 @@ void DukeActor_Lotsofstuff(DDukeActor* actor, PClassActor* intname, int count) lotsofstuff(actor, count, intname); } -DEFINE_ACTION_FUNCTION_NATIVE(DDukeActor, lotsofstuff, lotsofstuff) +DEFINE_ACTION_FUNCTION_NATIVE(DDukeActor, lotsofstuff, DukeActor_Lotsofstuff) { PARAM_SELF_PROLOGUE(DDukeActor); PARAM_POINTER(type, PClassActor); diff --git a/wadsrc/static/zscript/games/duke/dukeactor.zs b/wadsrc/static/zscript/games/duke/dukeactor.zs index faf2e4ffa..83519489e 100644 --- a/wadsrc/static/zscript/games/duke/dukeactor.zs +++ b/wadsrc/static/zscript/games/duke/dukeactor.zs @@ -231,7 +231,7 @@ class DukeActor : CoreActor native native int badguy(); native int scripted(); native int isplayer(); - native void lotsofstuff(Name type, int count); + native void lotsofstuff(class type, int count); native double gutsoffset(); native int movesprite(Vector3 move, int clipmask); native int movesprite_ex(Vector3 move, int clipmask, CollisionData coll);