aboutsummaryrefslogtreecommitdiffstats
path: root/gb_math.h
diff options
context:
space:
mode:
authorGravatar gingerBill 2016-06-13 14:08:26 +0100
committerGravatar GitHub 2016-06-13 14:08:26 +0100
commitcafbba83d95bc178d36a9bb77376422530d5dc4c (patch)
treec3bbee30906b876af7e2961cb2545ff3ad7ed120 /gb_math.h
parentFix UTF-8 stuff (diff)
Fix gbVec2.e to be 3 elements rather than 2
Diffstat (limited to '')
-rw-r--r--gb_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gb_math.h b/gb_math.h
index 075dd28..d4ef43b 100644
--- a/gb_math.h
+++ b/gb_math.h
@@ -80,7 +80,7 @@ typedef union gbVec3 {
struct { float r, g, b; };
gbVec2 xy;
- float e[2];
+ float e[3];
} gbVec3;
typedef union gbVec4 {