1
0
Fork 0
forked from fte/fteqw

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
This commit is contained in:
Spoike 2010-08-11 09:29:40 +00:00
parent 1196daca4d
commit 6a50f2242f

View file

@ -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)
{