Skip to content

Commit

Permalink
update res scale tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
Erimelowo committed Oct 4, 2024
1 parent fde4030 commit f7addbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -944,10 +944,10 @@ int main(int argc, char *argv[])
addTooltip("Percentages to decrease resolution when needed.");

ImGui::InputInt("Increase scale", &resIncreaseScale, 10);
addTooltip("Resolution increase relative to frametime headroom. The more frametime headroom and the higher this value is, the faster resolution will increase.");
addTooltip("The more frametime headroom and the higher this value is, the more resolution will increase each time.");

ImGui::InputInt("Decrease scale", &resDecreaseScale, 10);
addTooltip("Resolution decrease relative to frametime excess. The more frametime excess and the higher this value is, the faster resolution will decrease.");
addTooltip("The more frametime excess and the higher this value is, the more resolution will decrease each time.");

ImGui::InputFloat("Minimum CPU time threshold", &minCpuTimeThreshold, 0.1);
addTooltip("Don't increase resolution if the CPU frametime is below this value (useful to prevent resolution increases during loading screens).");
Expand Down

0 comments on commit f7addbc

Please sign in to comment.