GlosSITarget: Fix too low screen scale comparison

pull/192/head
Peter Repukat 2 years ago
parent 2fbf3b444d
commit 45bd68e595

@ -369,7 +369,7 @@ void TargetWindow::createWindow()
spdlog::debug("Config file fps limit seems sane...");
setFpsLimit(Settings::window.maxFps);
}
if (Settings::window.scale > 0.3f) { // Now that's just getting ridicoulus
if (Settings::window.scale < 0.3f) { // Now that's just getting ridicoulus
ImGuiIO& io = ImGui::GetIO();
io.FontGlobalScale = Settings::window.scale;
ImGui::SFML::UpdateFontTexture();

Loading…
Cancel
Save