Move fmodf, atan2f, sinf, and cosf to std:: namespace

This commit is contained in:
LagoLunatic
2024-08-08 14:50:10 -04:00
parent 864847dfd9
commit 707fceca57
8 changed files with 26 additions and 39 deletions
+1 -1
View File
@@ -323,7 +323,7 @@ u32 JUTGamePad::CStick::update(s8 x_val, s8 y_val, EStickMode mode, EWhichStick
mAngle = -0x4000;
}
} else {
mAngle = 10430.379f * atan2f(mPosX, -mPosY);
mAngle = 10430.379f * std::atan2f(mPosX, -mPosY);
}
}