diff options
author | aap <aap@papnet.eu> | 2020-05-10 17:09:57 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-05-10 17:09:57 +0200 |
commit | 5b605c127144ab805581f62015ef3742c1d4a64e (patch) | |
tree | f86a422d080f58afcaa5eac7cf2b378bdf306142 /src/control/SceneEdit.cpp | |
parent | Small unification (diff) | |
download | re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar.gz re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar.bz2 re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar.lz re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar.xz re3-5b605c127144ab805581f62015ef3742c1d4a64e.tar.zst re3-5b605c127144ab805581f62015ef3742c1d4a64e.zip |
Diffstat (limited to 'src/control/SceneEdit.cpp')
-rw-r--r-- | src/control/SceneEdit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/SceneEdit.cpp b/src/control/SceneEdit.cpp index c8b4242e..632ec94a 100644 --- a/src/control/SceneEdit.cpp +++ b/src/control/SceneEdit.cpp @@ -76,7 +76,7 @@ static int32 NextValidModelId(int32 mi, int32 step) int32 i = mi; while (result == -1) { i += step; - if (i < 0 || i > 5500) { + if (i < 0 || i > MODELINFOSIZE) { step = -step; continue; } |