Make LevelLocals::ExecuteSpecial return int

This commit is contained in:
Marrub 2019-01-09 04:26:40 -05:00 committed by Christoph Oelckers
parent 203110c6fe
commit 82736985cc

View file

@ -3961,8 +3961,6 @@ DEFINE_ACTION_FUNCTION(FLevelLocals, ExecuteSpecial)
PARAM_INT(arg4);
PARAM_INT(arg5);
bool res = !!P_ExecuteSpecial(special, linedef, activator, lineside, arg1, arg2, arg3, arg4, arg5);
ACTION_RETURN_BOOL(res);
ACTION_RETURN_INT(P_ExecuteSpecial(special, linedef, activator, lineside, arg1, arg2, arg3, arg4, arg5));
}