From 211687d21fe887114088677aac19748abcb3f2aa Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Thu, 25 Apr 2013 12:25:28 +1000 Subject: [PATCH] test the non msvc path as __GNUC__ not __linux__ --- codemp/game/q_shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__