Skip to content

Commit

Permalink
Revert "VideoHardware: Set resolution to 720p in language select screen"
Browse files Browse the repository at this point in the history
This reverts commit eae6394.

Pull request throws SyntaxError
and is closed before merge due to side effects.
  • Loading branch information
Taapat committed Nov 12, 2023
1 parent 0d44ce1 commit 17cdccd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def createConfig(self, *args):
ratelist.append((rate, mode == "2160p30" and "auto (25Hz/30Hz/24Hz)" or "auto (50Hz/60Hz/24Hz)"))
else:
ratelist.append((rate, rate == "multi" and (mode == "2160p30" and "multi (25Hz/30Hz)" or "multi (50Hz/60Hz)") or rate))
config.av.videorate[mode] = ConfigSelection((default=("720p", "720p"), choices=ratelist)
config.av.videorate[mode] = ConfigSelection(choices=ratelist)
config.av.videoport = ConfigSelection(choices=lst)

def setConfiguredMode(self):
Expand Down

0 comments on commit 17cdccd

Please sign in to comment.