From 6a50f2242f224ce9528a4b3057a4ef87c640d3d2 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 11 Aug 2010 09:29:40 +0000 Subject: [PATCH] apparently MINIMAL makes use of that. git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3574 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/common.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/engine/common/common.c b/engine/common/common.c index 79bf9d300..913c8a5c0 100644 --- a/engine/common/common.c +++ b/engine/common/common.c @@ -1304,14 +1304,11 @@ void MSG_ReadPos (vec3_t pos) pos[2] = MSG_ReadCoord(); } -#if defined(Q2CLIENT) || defined(Q2SERVER) #define Q2NUMVERTEXNORMALS 162 vec3_t bytedirs[Q2NUMVERTEXNORMALS] = { #include "../client/q2anorms.h" }; -#endif -#ifdef Q2CLIENT void MSG_ReadDir (vec3_t dir) { int b; @@ -1324,7 +1321,6 @@ void MSG_ReadDir (vec3_t dir) } VectorCopy (bytedirs[b], dir); } -#endif #ifdef Q2SERVER void MSG_WriteDir (sizebuf_t *sb, vec3_t dir) {