Remove GameInfoWindow, Multiplayer Button, and FPS Slider

This commit is contained in:
MegaMech
2025-04-24 20:25:51 -06:00
parent 2947d8932e
commit 0b6c37e067
6 changed files with 23 additions and 145 deletions
+1 -1
View File
@@ -531,7 +531,7 @@ void UpdateResolutionVars() {
bool IsDroppingFrames() {
// a rather imprecise way of checking for frame drops.
// but it's mostly there to inform the player of large drops.
const short targetFPS = CVarGetInteger("gInterpolationFPS", 20);
const short targetFPS = CVarGetInteger("gInterpolationFPS", 30);
const float threshold = targetFPS / 20.0f + 4.1f;
return ImGui::GetIO().Framerate < targetFPS - threshold;
}