aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vendor/raylib/raymath.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raymath.odin b/vendor/raylib/raymath.odin
index 9682ffe4f..eef5c2fcd 100644
--- a/vendor/raylib/raymath.odin
+++ b/vendor/raylib/raymath.odin
@@ -668,7 +668,7 @@ MatrixLookAt :: proc "c" (eye, target, up: Vector3) -> Matrix {
// Get float array of matrix data
@(require_results)
MatrixToFloatV :: proc "c" (mat: Matrix) -> [16]f32 {
- return transmute([16]f32)mat
+ return transmute([16]f32)linalg.transpose(mat)
}