mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
Fix FPS setting restore logic
This commit is contained in:
@@ -162,7 +162,7 @@ ScrollView {
|
|||||||
var el_fps = parseInt(fpsListModel.get(i).video_fps);
|
var el_fps = parseInt(fpsListModel.get(i).video_fps);
|
||||||
|
|
||||||
// Pick the highest value lesser or equal to the saved FPS
|
// Pick the highest value lesser or equal to the saved FPS
|
||||||
if (el_fps >= saved_fps) {
|
if (saved_fps >= el_fps) {
|
||||||
currentIndex = i
|
currentIndex = i
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user