Fix for bug with comma separated declaration list vars

Known Bug: Inline comments are not printing now
This commit is contained in:
2023-10-25 21:43:02 -04:00
parent b42b224c0d
commit c1ab233686
3 changed files with 18 additions and 18 deletions

View File

@ -323,10 +323,10 @@ typedef Vector4 Quaternion;
typedef struct Matrix
{
f32 m0, m4, m8, m12;
; // Matrix first row (4 components)
float m1, m5, m9, m13; // Matrix second row (4 components)
float m2, m6, m10, m14; // Matrix third row (4 components)
float m3, m7, m11, m15;
f32 m1, m5, m9, m13;
f32 m2, m6, m10, m14;
f32 m3, m7, m11, m15;
} Matrix;
// Color, 4 components, R8G8B8A8 (32bit)

View File

@ -150,10 +150,10 @@ typedef Vector4 Quaternion;
typedef struct Matrix
{
f32 m0, m4, m8, m12;
; // Matrix first row (4 components)
float m1, m5, m9, m13; // Matrix second row (4 components)
float m2, m6, m10, m14; // Matrix third row (4 components)
float m3, m7, m11, m15;
f32 m1, m5, m9, m13;
f32 m2, m6, m10, m14;
f32 m3, m7, m11, m15;
} Matrix;
#endif