eliminat renderInfo de ResourceCache::init

This commit is contained in:
2026-03-28 10:49:39 +01:00
parent a06eb8c8e9
commit 21c8d1e8ca
2 changed files with 11 additions and 1 deletions

View File

@@ -529,7 +529,10 @@ void Screen::hide() { SDL_HideWindow(window_); }
void Screen::setNotificationsEnabled(bool value) { notifications_enabled_ = value; }
// Activa / desactiva el contador de FPS
void Screen::toggleFPS() { show_fps_ = !show_fps_; }
void Screen::toggleFPS() {
show_fps_ = !show_fps_;
if (show_fps_) { updateZoomFactor(); }
}
// Alterna entre activar y desactivar el escalado entero
void Screen::toggleIntegerScale() {