mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed what looks like an incorrect comparison in thingdef_states.cpp.
SVN r1467 (trunk)
This commit is contained in:
parent
b072431d3b
commit
fd5a5be76a
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ do_stop:
|
|||
sc.ScriptError("Negative jump offsets are not allowed");
|
||||
}
|
||||
|
||||
if (x > 0)
|
||||
if (v > 0)
|
||||
{
|
||||
x = new FxStateByIndex(bag.statedef.GetStateCount() + v, sc);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue