Fix gbVec2.e to be 3 elements rather than 2

This commit is contained in:
gingerBill 2016-06-13 14:08:26 +01:00 committed by GitHub
parent 09f7696cec
commit cafbba83d9
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ typedef union gbVec3 {
struct { float r, g, b; };
gbVec2 xy;
float e[2];
float e[3];
} gbVec3;
typedef union gbVec4 {