test the non msvc path as __GNUC__ not __linux__

This commit is contained in:
Jonathan Gray 2013-04-25 12:25:28 +10:00
parent f50e96fe20
commit 211687d21f

View file

@ -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__