mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Mapster32: Fix tweaking TROR wall links when flipping sectors ([X], [Y]).
This was actually broken all the time except when ALL sectors were selected (which was what I tested incidentally when I wrote the first "fix"). D'oh! git-svn-id: https://svn.eduke32.com/eduke32@2773 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
716ea1f3b2
commit
d5dd5fec9d
1 changed files with 1 additions and 1 deletions
|
@ -3456,7 +3456,7 @@ void overheadeditor(void)
|
|||
// for the new arrangement!
|
||||
for (i=0; i<highlightsectorcnt; i++)
|
||||
{
|
||||
for (WALLS_OF_SECTOR(i, j))
|
||||
for (WALLS_OF_SECTOR(highlightsector[i], j))
|
||||
{
|
||||
if (wall[j].nextwall >= 0)
|
||||
wall[j].nextwall = otonwall[wall[j].nextwall];
|
||||
|
|
Loading…
Reference in a new issue