aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/cm_patch.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-10-06 21:59:17 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-10-06 21:59:17 +0000
commitaeaae017e0ca84f74fb3877744d1cf575f83773c (patch)
treea93fc46f08b18dfa080883b1219f883d8b811a46 /code/qcommon/cm_patch.c
parent6bf8f279665d5d006159fb9fc180984c644ed875 (diff)
downloadioquake3-aero-aeaae017e0ca84f74fb3877744d1cf575f83773c.tar.gz
ioquake3-aero-aeaae017e0ca84f74fb3877744d1cf575f83773c.zip
* Bug fix to collision optimisation (arQon)
git-svn-id: svn://svn.icculus.org/quake3/trunk@1190 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/cm_patch.c')
-rw-r--r--code/qcommon/cm_patch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/cm_patch.c b/code/qcommon/cm_patch.c
index 176aac1..77cf368 100644
--- a/code/qcommon/cm_patch.c
+++ b/code/qcommon/cm_patch.c
@@ -1386,7 +1386,7 @@ void CM_TraceThroughPatchCollide( traceWork_t *tw, const struct patchCollide_s *
static cvar_t *cv;
#endif //BSPC
- if ( !BoundsIntersect( tw->bounds[0], tw->bounds[1],
+ if ( !CM_BoundsIntersect( tw->bounds[0], tw->bounds[1],
pc->bounds[0], pc->bounds[1] ) ) {
return;
}