fix another oversight

This commit is contained in:
Arisotura
2024-11-18 23:13:48 +01:00
parent b491e99954
commit d68091ee9c
2 changed files with 6 additions and 6 deletions

View File

@ -1966,8 +1966,8 @@ void MainWindow::onUpdateInterfaceSettings()
emuInstance->targetFPS = globalCfg.GetDouble("TargetFPS");
emuInstance->fastForwardFPS = globalCfg.GetDouble("FastForwardFPS");
emuInstance->slowmoFPS = globalCfg.GetDouble("SlowmoFPS");
panel->setMouseHide(globalCfg.GetBool("MouseHide"),
globalCfg.GetInt("MouseHideSeconds")*1000);
panel->setMouseHide(globalCfg.GetBool("Mouse.Hide"),
globalCfg.GetInt("Mouse.HideSeconds")*1000);
}
void MainWindow::onInterfaceSettingsFinished(int res)