mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-13 12:52:27 +00:00
Fix FPS setting restore logic
This commit is contained in:
parent
b76645e26b
commit
73dd5630df
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ ScrollView {
|
|||
var el_fps = parseInt(fpsListModel.get(i).video_fps);
|
||||
|
||||
// Pick the highest value lesser or equal to the saved FPS
|
||||
if (el_fps >= saved_fps) {
|
||||
if (saved_fps >= el_fps) {
|
||||
currentIndex = i
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue