From: Wolfgang (Blub) Bumiller Date: Thu, 16 Aug 2012 10:58:54 +0000 (+0200) Subject: make the 'vector' type use qcfloat instead of float X-Git-Tag: 0.1-rc1~263 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0c74f8fdb929e0dbb04ba861ff083764f6738476;p=xonotic%2Fgmqcc.git make the 'vector' type use qcfloat instead of float --- diff --git a/gmqcc.h b/gmqcc.h index c0b5fb3..fa06c2e 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -783,7 +783,7 @@ enum store_types { }; typedef struct { - float x, y, z; + qcfloat x, y, z; } vector; vector vec3_add (vector, vector);