From 30f93439a064bf350924e7f6cb58043db6a10624 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 31 Jul 2001 08:06:27 +0000 Subject: [PATCH] /tiny/ optimisations --- qw/source/pmovetst.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/qw/source/pmovetst.c b/qw/source/pmovetst.c index f9933cdda..a37af8faa 100644 --- a/qw/source/pmovetst.c +++ b/qw/source/pmovetst.c @@ -116,9 +116,6 @@ PM_HullPointContents (hull_t *hull, int num, vec3_t p) mplane_t *plane; while (num >= 0) { - if (num < hull->firstclipnode || num > hull->lastclipnode) - Sys_Error ("PM_HullPointContents: bad node number"); - node = hull->clipnodes + num; plane = hull->planes + node->planenum; @@ -152,9 +149,6 @@ PM_PointContents (vec3_t p) num = hull->firstclipnode; while (num >= 0) { - if (num < hull->firstclipnode || num > hull->lastclipnode) - Sys_Error ("PM_HullPointContents: bad node number"); - node = hull->clipnodes + num; plane = hull->planes + node->planenum;