mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
Nothing of note...
This commit is contained in:
parent
0781aaaf8c
commit
b0bf08dad6
2 changed files with 8 additions and 9 deletions
|
@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#define QUAKE_GAME // as opposed to utilities
|
||||
|
||||
//define PARANOID // speed sapping error checking
|
||||
//#define PARANOID // speed sapping error checking
|
||||
|
||||
#define VERSION 0.1
|
||||
|
||||
|
|
|
@ -252,14 +252,13 @@ qboolean PM_RecursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec
|
|||
if (!PM_RecursiveHullCheck (hull, node->children[side], p1f, midf, p1, mid, trace) )
|
||||
return false;
|
||||
|
||||
#ifdef PARANOID
|
||||
if (PM_HullPointContents (pm_hullmodel, mid, node->children[side])
|
||||
== CONTENTS_SOLID)
|
||||
{
|
||||
Con_Printf ("mid PointInHullSolid\n");
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
//#ifdef PARANOID
|
||||
// if (PM_HullPointContents (pm_hullmodel, mid, node->children[side]) == CONTENTS_SOLID)
|
||||
// {
|
||||
// Con_Printf ("mid PointInHullSolid\n");
|
||||
// return false;
|
||||
// }
|
||||
//#endif
|
||||
|
||||
if (PM_HullPointContents (hull, node->children[side^1], mid)
|
||||
!= CONTENTS_SOLID)
|
||||
|
|
Loading…
Reference in a new issue