From cafbba83d95bc178d36a9bb77376422530d5dc4c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 13 Jun 2016 14:08:26 +0100 Subject: [PATCH] Fix gbVec2.e to be 3 elements rather than 2 --- gb_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {