mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Fixed incorrect parameter type in A_CheckForResurrection.
This commit is contained in:
parent
3d38d5e30c
commit
89fb5d0a92
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue