From: havoc Date: Thu, 2 Aug 2007 00:10:45 +0000 (+0000) Subject: fix an error in the last patch X-Git-Tag: xonotic-v0.1.0preview~2964 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=be85cd560a9c5d0a0c6c817e7d4c205a9c0ec1e5;p=xonotic%2Fdarkplaces.git fix an error in the last patch git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7501 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/model_brush.c b/model_brush.c index 0a5ad8a7..eb46f3e1 100644 --- a/model_brush.c +++ b/model_brush.c @@ -611,21 +611,6 @@ typedef struct RecursiveHullCheckTraceInfo_s } RecursiveHullCheckTraceInfo_t; -typedef struct RecursiveHullCheckTraceInfo_s -{ - // the hull we're tracing through - const hull_t *hull; - - // the trace structure to fill in - trace_t *trace; - - // start, end, and end - start (in model space) - double start[3]; - double end[3]; - double dist[3]; -} -RecursiveHullCheckTraceInfo_t; - // 1/32 epsilon to keep floating point happy #define DIST_EPSILON (0.03125)