Fix a silly error in bsp extents checking.

Found while hunting for rhinodemons.
This commit is contained in:
Bill Currie 2012-11-23 14:38:15 +09:00
parent fe9fb41f93
commit 67b796f851
1 changed files with 2 additions and 2 deletions

View File

@ -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