Skip to content

Commit

Permalink
vendor/raylib: fix Vector3Unproject wrong assignment
Browse files Browse the repository at this point in the history
Fixes #4646
  • Loading branch information
laytan committed Jan 5, 2025
1 parent 397e371 commit 5957ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/raylib/raymath.odin
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5957ff3

Please sign in to comment.