mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: Lock #255 was inaccessible for LOCKDEFS.
This commit is contained in:
parent
a7fd04a235
commit
3dcb05e5d2
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ static void ParseLock(FScanner &sc)
|
||||||
}
|
}
|
||||||
|
|
||||||
ignorekey = true;
|
ignorekey = true;
|
||||||
if (keynum > 0 && keynum < 255)
|
if (keynum > 0 && keynum <= 255)
|
||||||
{
|
{
|
||||||
lock = new Lock;
|
lock = new Lock;
|
||||||
if (locks[keynum])
|
if (locks[keynum])
|
||||||
|
|
Loading…
Reference in a new issue