missed a definition

This commit is contained in:
Antonis Geralis 2022-11-23 23:59:18 +02:00 committed by GitHub
parent bb9e902f92
commit 173c65012f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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],