Skip to content

Commit

Permalink
- Blood may not abort on a bogus start position.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
coelckers committed Jul 12, 2022
1 parent ed4e23f commit 6c915d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/games/blood/src/db.cpp
Expand Up @@ -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);
}


Expand Down

0 comments on commit 6c915d7

Please sign in to comment.