mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-07 08:21:45 +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;
|
numwalls = newnumwalls;
|
||||||
if (numwalls < 0) numwalls = tempint;
|
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();
|
clear2dscreen();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue