Qt: Fix FPS target maxing out at 59.727 (fixes #1421)

This commit is contained in:
Vicki Pfau 2019-05-26 21:37:18 -07:00
parent c5b686fce2
commit 6248093e4b
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
0.7.3: (Future)
Other fixes:
- Switch: Fix threading-related crash on second launch
- Qt: Fix FPS target maxing out at 59.727 (fixes mgba.io/i/1421)
0.7.2: (2019-05-25)
Emulation fixes:

View File

@ -389,7 +389,7 @@ void SettingsView::updateConfig() {
}
double nativeFps = double(GBA_ARM7TDMI_FREQUENCY) / double(VIDEO_TOTAL_LENGTH);
if (nativeFps - m_ui.fpsTarget->value() < 0.0001) {
if (fabs(nativeFps - m_ui.fpsTarget->value()) < 0.0001) {
m_controller->setOption("fpsTarget", QVariant(nativeFps));
} else {
saveSetting("fpsTarget", m_ui.fpsTarget);