make the 'vector' type use qcfloat instead of float

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-16 12:58:54 +02:00
parent b3d4e406ec
commit 0c74f8fdb9

View file

@ -783,7 +783,7 @@ enum store_types {
};
typedef struct {
float x, y, z;
qcfloat x, y, z;
} vector;
vector vec3_add (vector, vector);