Fixed incorrect parameter type in A_CheckForResurrection.

This commit is contained in:
CandiceJoy 2023-03-17 05:51:06 -05:00 committed by Christoph Oelckers
parent 3d38d5e30c
commit 89fb5d0a92

View file

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