vendor/raylib: fix Vector3Unproject wrong assignment

Fixes #4646
This commit is contained in:
Laytan Laats
2025-01-05 13:45:01 +01:00
parent 397e371232
commit 5957ff3699

View File

@@ -523,7 +523,7 @@ Vector3Unproject :: proc "c" (source: Vector3, projection: Matrix, view: Matrix)
quat: Quaternion
quat.x = source.x
quat.y = source.z
quat.y = source.y
quat.z = source.z
quat.w = 1