mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
Removed _DEF.
This commit is contained in:
parent
60d93008ba
commit
af3bda3f2a
1 changed files with 2 additions and 2 deletions
|
@ -2501,8 +2501,8 @@ bool P_TryMove(AActor *thing, const DVector2 &pos,
|
||||||
DEFINE_ACTION_FUNCTION(AActor, TryMove)
|
DEFINE_ACTION_FUNCTION(AActor, TryMove)
|
||||||
{
|
{
|
||||||
PARAM_SELF_PROLOGUE(AActor);
|
PARAM_SELF_PROLOGUE(AActor);
|
||||||
PARAM_FLOAT_DEF(x);
|
PARAM_FLOAT(x);
|
||||||
PARAM_FLOAT_DEF(y);
|
PARAM_FLOAT(y);
|
||||||
PARAM_INT(dropoff);
|
PARAM_INT(dropoff);
|
||||||
ACTION_RETURN_BOOL(P_TryMove(self, DVector2(x, y), dropoff));
|
ACTION_RETURN_BOOL(P_TryMove(self, DVector2(x, y), dropoff));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue