From fe0728da3e4293ace0a7804302d002e524deb419 Mon Sep 17 00:00:00 2001 From: Jonas Date: Mon, 3 Nov 2025 15:57:55 +0100 Subject: [PATCH] changed order of MATRIX --- I2_NeuronalerAbsturz/Start_Mac/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I2_NeuronalerAbsturz/Start_Mac/matrix.h b/I2_NeuronalerAbsturz/Start_Mac/matrix.h index 3b9a3df..6174048 100644 --- a/I2_NeuronalerAbsturz/Start_Mac/matrix.h +++ b/I2_NeuronalerAbsturz/Start_Mac/matrix.h @@ -9,9 +9,9 @@ typedef float MatrixType; typedef struct { + MatrixType *buffer; int rows; int cols; - MatrixType *buffer; } Matrix;