mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed: A_Teleport and A_Warp had incorrect declarations for their state parameter.
This commit is contained in:
parent
4f0747c59e
commit
845f5e0833
1 changed files with 2 additions and 2 deletions
|
@ -5012,7 +5012,7 @@ enum T_Flags
|
||||||
DEFINE_ACTION_FUNCTION(AActor, A_Teleport)
|
DEFINE_ACTION_FUNCTION(AActor, A_Teleport)
|
||||||
{
|
{
|
||||||
PARAM_ACTION_PROLOGUE(AActor);
|
PARAM_ACTION_PROLOGUE(AActor);
|
||||||
PARAM_STATE_DEF (teleport_state)
|
PARAM_STATE_ACTION_DEF (teleport_state)
|
||||||
PARAM_CLASS_DEF (target_type, ASpecialSpot)
|
PARAM_CLASS_DEF (target_type, ASpecialSpot)
|
||||||
PARAM_CLASS_DEF (fog_type, AActor)
|
PARAM_CLASS_DEF (fog_type, AActor)
|
||||||
PARAM_INT_DEF (flags)
|
PARAM_INT_DEF (flags)
|
||||||
|
@ -5449,7 +5449,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_Warp)
|
||||||
PARAM_FLOAT_DEF(zofs)
|
PARAM_FLOAT_DEF(zofs)
|
||||||
PARAM_ANGLE_DEF(angle)
|
PARAM_ANGLE_DEF(angle)
|
||||||
PARAM_INT_DEF(flags)
|
PARAM_INT_DEF(flags)
|
||||||
PARAM_STATE_DEF(success_state)
|
PARAM_STATE_ACTION_DEF(success_state)
|
||||||
PARAM_FLOAT_DEF(heightoffset)
|
PARAM_FLOAT_DEF(heightoffset)
|
||||||
PARAM_FLOAT_DEF(radiusoffset)
|
PARAM_FLOAT_DEF(radiusoffset)
|
||||||
PARAM_ANGLE_DEF(pitch)
|
PARAM_ANGLE_DEF(pitch)
|
||||||
|
|
Loading…
Reference in a new issue