From ce25a7def5dc658d78c06016494b90972f1cf973 Mon Sep 17 00:00:00 2001 From: tma Date: Sat, 29 Oct 2005 23:13:09 +0000 Subject: * General decrufting: * Removed Q3_STATIC and associated defines * Removed MAC_STATIC * Replaced __LCC__ with Q3_VM * Removed bspc and splines directories git-svn-id: svn://svn.icculus.org/quake3/trunk@201 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/q_math.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/qcommon/q_math.c') diff --git a/code/qcommon/q_math.c b/code/qcommon/q_math.c index 4c35730..da3044e 100644 --- a/code/qcommon/q_math.c +++ b/code/qcommon/q_math.c @@ -153,7 +153,7 @@ float Q_crandom( int *seed ) { return 2.0 * ( Q_random( seed ) - 0.5 ); } -#ifdef __LCC__ +#ifdef Q3_VM int VectorCompare( const vec3_t v1, const vec3_t v2 ) { if (v1[0] != v2[0] || v1[1] != v2[1] || v1[2] != v2[2]) { @@ -739,7 +739,7 @@ int BoxOnPlaneSide2 (vec3_t emins, vec3_t emaxs, struct cplane_s *p) // if not GNU x86 and configured to use asm #if !( (defined __GNUC__) && (defined __i386__) && (!defined C_ONLY)) -#if defined __LCC__ || defined C_ONLY || !id386 || defined __VECTORC +#if defined Q3_VM || defined C_ONLY || !id386 || defined __VECTORC int BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *p) { -- cgit v1.2.3