mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-06-04 11:10:48 +00:00
- Fixed: The count parameter of A_Jump is a constant, not an expression.
git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@160 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
parent
8c77bc8d50
commit
fd39e7f203
3 changed files with 7 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue