mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 01:41:10 +00:00
Fix a silly error in bsp extents checking.
Found while hunting for rhinodemons.
This commit is contained in:
parent
fe9fb41f93
commit
67b796f851
1 changed files with 2 additions and 2 deletions
|
@ -944,8 +944,8 @@ WriteBSPFile (const bsp_t *bsp, QFile *file)
|
|||
|| bsp->models[0].mins[1] < -32768.0f
|
||||
|| bsp->models[0].mins[2] < -32768.0f
|
||||
|| bsp->models[0].mins[0] >= 32768.0f
|
||||
|| bsp->models[0].mins[0] >= 32768.0f
|
||||
|| bsp->models[0].mins[0] >= 32768.0f
|
||||
|| bsp->models[0].mins[1] >= 32768.0f
|
||||
|| bsp->models[0].mins[2] >= 32768.0f
|
||||
|| bsp->nummarksurfaces >= 32768
|
||||
|| bsp->numvertexes >= 32768
|
||||
|| bsp->numnodes >= 32768
|
||||
|
|
Loading…
Reference in a new issue