From f40765afcf7161870c1b030f885146620f696d96 Mon Sep 17 00:00:00 2001 From: Christopher Merrill <47538097+Revan20911@users.noreply.github.com> Date: Sat, 15 Apr 2023 11:49:12 -0500 Subject: [PATCH] Update SettingsWindow.cs --- Ryujinx/Ui/Windows/SettingsWindow.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Ryujinx/Ui/Windows/SettingsWindow.cs b/Ryujinx/Ui/Windows/SettingsWindow.cs index e9c28cda2..cfdee3396 100644 --- a/Ryujinx/Ui/Windows/SettingsWindow.cs +++ b/Ryujinx/Ui/Windows/SettingsWindow.cs @@ -559,17 +559,20 @@ namespace Ryujinx.Ui.Windows _height = 720; break; case "2": - _width = 1280; - _height = 720; + _width = 1920; + _height = 1080; break; case "3": - _width = 2160; + _width = 2560; _height = 1440; break; default: break; } + //If more resolutions need to be added they can be added here by just adding additional options + //in SettingsWindow.glade and then adding the related case to the switch statement. + ConfigurationState.Instance.Ui.WindowSizeWidth.Value = _width; ConfigurationState.Instance.Ui.WindowSizeHeight.Value = _height;