mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
fixes wall drawing (bug introduced in r1540)
git-svn-id: https://svn.eduke32.com/eduke32@1542 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7199818841
commit
b468afc867
1 changed files with 1 additions and 1 deletions
|
@ -1379,7 +1379,7 @@ void overheadeditor(void)
|
|||
numwalls = newnumwalls;
|
||||
if (numwalls < 0) numwalls = tempint;
|
||||
|
||||
if (keystatus[buildkeys[BK_MOVEUP]] || keystatus[buildkeys[BK_MOVEDOWN]] || mousx || mousy || bstatus || (totalclock & 8) == 0)
|
||||
if (keystatus[buildkeys[BK_MOVEUP]] || keystatus[buildkeys[BK_MOVEDOWN]] || mousx || mousy || bstatus || (totalclock & 8) == 0 || newnumwalls>=0)
|
||||
{
|
||||
clear2dscreen();
|
||||
|
||||
|
|
Loading…
Reference in a new issue