about summary refs log tree commit diff
path: root/src/game/vmath.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/vmath.h')
-rw-r--r--src/game/vmath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/vmath.h b/src/game/vmath.h
index d7b502b1..7eaed12f 100644
--- a/src/game/vmath.h
+++ b/src/game/vmath.h
@@ -70,9 +70,9 @@ template<typename T>
 class vector3_base
 {
 public:
-	union { T x,r; };
-	union { T y,g; };
-	union { T z,b; };
+	union { T x,r,h; };
+	union { T y,g,s; };
+	union { T z,b,v,l; };
 
 	vector3_base() {}
 	vector3_base(float nx, float ny, float nz)