diff --git a/codemp/game/q_shared.h b/codemp/game/q_shared.h index f9bf59d..5120975 100644 --- a/codemp/game/q_shared.h +++ b/codemp/game/q_shared.h @@ -1400,7 +1400,7 @@ typedef struct { #define VectorSet5(v,x,y,z,a,b) ((v)[0]=(x), (v)[1]=(y), (v)[2]=(z), (v)[3]=(a), (v)[4]=(b)) //rwwRMG - added #define Vector4Copy(a,b) ((b)[0]=(a)[0],(b)[1]=(a)[1],(b)[2]=(a)[2],(b)[3]=(a)[3]) -#ifdef __linux__ +#ifdef __GNUC__ #define SnapVector(v) {v[0]=((int)(v[0]));v[1]=((int)(v[1]));v[2]=((int)(v[2]));} #else #ifndef __LCC__