Removed _DEF.

This commit is contained in:
Major Cooke 2016-11-16 12:29:06 -06:00 committed by Christoph Oelckers
parent 60d93008ba
commit af3bda3f2a

View file

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