Skip to content

Commit

Permalink
Fixed incorrect parameter type in A_CheckForResurrection.
Browse files Browse the repository at this point in the history
  • Loading branch information
CandiceJoy authored and coelckers committed Mar 18, 2023
1 parent 3d38d5e commit 89fb5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/vmthunks_actors.cpp
Expand Up @@ -1634,7 +1634,7 @@ int CheckForResurrection(AActor *self, FState* state, int sound)
DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_CheckForResurrection, CheckForResurrection)
{
PARAM_SELF_PROLOGUE(AActor);
PARAM_STATE(state);
PARAM_POINTER(state, FState);
PARAM_INT(sound);
ACTION_RETURN_BOOL(CheckForResurrection(self, state, sound));
}
Expand Down

0 comments on commit 89fb5d0

Please sign in to comment.