From 173c65012f2c53af629107a8d76ea292f760316c Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Wed, 23 Nov 2022 23:59:18 +0200 Subject: [PATCH] missed a definition --- src/rlgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlgl.h b/src/rlgl.h index 694201f4f..9c3c69c20 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -1173,7 +1173,7 @@ void rlScalef(float x, float y, float z) } // Multiply the current matrix by another matrix -void rlMultMatrixf(float *matf) +void rlMultMatrixf(const float *matf) { // Matrix creation from array Matrix mat = { matf[0], matf[4], matf[8], matf[12],