mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 02:01:31 +00:00
- fixed validation issue with maps that have a wall with nextwall == -1 and nextsector > -1.
In this case the bogus nextsector was not reset.
This commit is contained in:
parent
21fddd6c54
commit
de1cbb9ee0
2 changed files with 7 additions and 4 deletions
|
@ -831,7 +831,11 @@ void setWallSectors()
|
|||
wal.nextsector = wal.nextWall()->sector;
|
||||
}
|
||||
}
|
||||
else wal.nextwall = -1;
|
||||
else
|
||||
{
|
||||
wal.nextwall = -1;
|
||||
wal.nextsector = -1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue