- Fixed: The count parameter of A_Jump is a constant, not an expression.

SVN r1171 (trunk)
This commit is contained in:
Christoph Oelckers 2008-08-14 22:58:17 +00:00
commit e54c7f6e46
3 changed files with 4 additions and 1 deletions

View file

@ -448,7 +448,7 @@ static void DoJump(AActor * self, FState * CallingState, int offset, StateCallDa
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Jump)
{
ACTION_PARAM_START(3);
ACTION_PARAM_INT(count, 0);
ACTION_PARAM_CONST(count, 0);
ACTION_PARAM_INT(maxchance, 1);
ACTION_PARAM_VARARG(jumps, 2);