Skip to content

Commit

Permalink
fix A_DoChase using the wrong type in non-jit
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoLuis0 committed Feb 1, 2025
1 parent ec8e0e6 commit ec42c77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/playsim/p_enemy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ec42c77

Please sign in to comment.