Skip to content

Commit

Permalink
Fix Linux sync
Browse files Browse the repository at this point in the history
Co-Authored-By: Malleo <16770560+malleoz@users.noreply.github.com>
  • Loading branch information
vabold and malleoz committed Apr 9, 2024
1 parent 53a89c2 commit 67edbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/egg/math/Math.cc
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ f32 cos(f32 x) {
}

f32 acos(f32 x) {
return std::acos(x);
return ::acosl(x);
}

f32 atan2(f32 y, f32 x) {
Expand Down

0 comments on commit 67edbb7

Please sign in to comment.