mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- Blood may not abort on a bogus start position.
There seem to be ways to override it elsewhere. The initial position gets used by some code, so it still needs to be validated, though.
This commit is contained in:
parent
ed4e23f1ec
commit
6c915d7940
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ void dbLoadMap(const char* pPath, int* pX, int* pY, int* pZ, short* pAngle, int*
|
|||
sectionGeometry.SetSize(sections.Size());
|
||||
wallbackup = wall;
|
||||
sectorbackup = sector;
|
||||
validateStartSector(mapname.GetChars(), { *pX, *pY, *pZ }, cursectnum, mapHeader.numsectors, gModernMap);
|
||||
validateStartSector(mapname.GetChars(), { *pX, *pY, *pZ }, cursectnum, mapHeader.numsectors, true);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue