mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-07 02:22:58 +00:00
fix A_DoChase using the wrong type in non-jit
This commit is contained in:
parent
ec8e0e667c
commit
ec42c77289
1 changed files with 2 additions and 2 deletions
|
@ -2993,8 +2993,8 @@ void A_DoChaseNative(AActor * self, FState *melee, FState *missile, int flags)
|
|||
DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_DoChase, A_DoChaseNative)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(AActor);
|
||||
PARAM_STATE(melee);
|
||||
PARAM_STATE(missile);
|
||||
PARAM_POINTER(melee, FState);
|
||||
PARAM_POINTER(missile, FState);
|
||||
PARAM_INT(flags);
|
||||
|
||||
A_DoChaseNative(self, melee, missile, flags);
|
||||
|
|
Loading…
Reference in a new issue