From e9df003e565929e0b3ed132e1300a3ef3959408e Mon Sep 17 00:00:00 2001 From: Vincent Davis Jr Date: Mon, 17 Jul 2023 23:09:40 -0400 Subject: [PATCH] types-struct: fix mat4x2s struct members union mat4x2s { struct { } } contains members with incorrect naming. Signed-off-by: Vincent Davis Jr --- include/cglm/types-struct.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cglm/types-struct.h b/include/cglm/types-struct.h index 8aa7982..b63d1c1 100644 --- a/include/cglm/types-struct.h +++ b/include/cglm/types-struct.h @@ -275,8 +275,8 @@ typedef union mat4x2s { struct { float m00, m01; float m10, m11; - float m21, m22; - float m31, m32; + float m20, m21; + float m30, m31; }; #endif } mat4x2s;