mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Make it impossible to start drawing walls when having a circle-wall
selected. (There was a corner case where this was possible.) git-svn-id: https://svn.eduke32.com/eduke32@2120 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
57e132a044
commit
a1864b6a2e
1 changed files with 3 additions and 3 deletions
|
@ -5629,9 +5629,6 @@ end_join_sectors:
|
|||
|
||||
if (bad > 0)
|
||||
{
|
||||
bad = 0;
|
||||
keystatus[0x39] = 0;
|
||||
|
||||
if (goodtogo)
|
||||
{
|
||||
asksave = 1;
|
||||
|
@ -5644,6 +5641,9 @@ end_join_sectors:
|
|||
printmessage16("Inserting circle points would exceed wall limit.");
|
||||
}
|
||||
}
|
||||
|
||||
bad = 0;
|
||||
keystatus[0x39] = 0;
|
||||
}
|
||||
|
||||
if (bad > 0) //Space bar test
|
||||
|
|
Loading…
Reference in a new issue