This commit is contained in:
Kyle 2024-05-22 07:12:22 -05:00 committed by GitHub
parent b56bfca1e8
commit 426bcb3529
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -303,7 +303,7 @@ func Scalef(x float32, y float32, z float32) {
// MultMatrix - Multiply the current matrix by another matrix
func MultMatrix(m Matrix) {
f := MatrixToFloat(m)
rlMultMatrixf(unsafe.Pointer(&f[0]))
rlMultMatrix(unsafe.Pointer(&f[0]))
}
// Frustum .