changed order of MATRIX

This commit is contained in:
Jonas Urban 2025-11-03 15:57:55 +01:00
parent dafd526828
commit fe0728da3e

View File

@ -9,9 +9,9 @@ typedef float MatrixType;
typedef struct
{
MatrixType *buffer;
int rows;
int cols;
MatrixType *buffer;
} Matrix;