- fixed lotsofstuff VM export.

This commit is contained in:
Christoph Oelckers 2022-12-19 18:02:32 +01:00
parent 30d066cee9
commit 52ea497b50
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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<DukeActor> type, int count);
native double gutsoffset();
native int movesprite(Vector3 move, int clipmask);
native int movesprite_ex(Vector3 move, int clipmask, CollisionData coll);