mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-08 00:36:21 +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);
|
||||
|
||||
// Pick the highest value lesser or equal to the saved FPS
|
||||
if (el_fps >= saved_fps) {
|
||||
if (saved_fps >= el_fps) {
|
||||
currentIndex = i
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user