misc changes

This commit is contained in:
Green Sky
2025-10-07 17:28:37 +02:00
parent c7ae6490cc
commit 0c6ea8238c
3 changed files with 4 additions and 3 deletions

View File

@@ -699,7 +699,7 @@ Screen* MainScreen::tick(float time_delta, bool& quit) {
case 2: compute_mode_lower_limit = 1.5f; break;
default: std::cerr << "unknown compute perf mode\n"; std::exit(-1);
}
if (compute_mode_lower_limit > _min_tick_interval) {
if (compute_mode_lower_limit > _min_tick_interval+0.0001f) {
_min_tick_interval = compute_mode_lower_limit;
_compute_lower_limit_hit = true;
} else if (_compute_lower_limit_hit_rendered) {