Merge pull request #339 from EasyIP2023/bug/fix-mat4x2s

types-struct: fix mat4x2s struct members
This commit is contained in:
Recep Aslantas
2023-07-18 09:07:41 +03:00
committed by GitHub

View File

@@ -275,8 +275,8 @@ typedef union mat4x2s {
struct { struct {
float m00, m01; float m00, m01;
float m10, m11; float m10, m11;
float m21, m22; float m20, m21;
float m31, m32; float m30, m31;
}; };
#endif #endif
} mat4x2s; } mat4x2s;