From cebf6dcd01e17edf5c7953c688ae83f35c9e7c16 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 27 Apr 2024 14:53:18 +0200 Subject: [PATCH] Allow any 1080p selection if the game supports 1080p --- rpcs3/Emu/System.cpp | 8 ++++---- rpcs3/rpcs3qt/settings_dialog.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 23b21896bb..0c9b5f79ba 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -278,10 +278,10 @@ static void fixup_settings(const psf::registry* _psf) { video_resolution::_576, psf::resolution_flag::_576p | psf::resolution_flag::_576p_16_9 }, { video_resolution::_720, psf::resolution_flag::_720p }, { video_resolution::_1080, psf::resolution_flag::_1080p }, - { video_resolution::_1600x1080, 0 }, - { video_resolution::_1440x1080, 0 }, - { video_resolution::_1280x1080, 0 }, - { video_resolution::_960x1080, 0 }, + { video_resolution::_1600x1080, psf::resolution_flag::_1080p }, + { video_resolution::_1440x1080, psf::resolution_flag::_1080p }, + { video_resolution::_1280x1080, psf::resolution_flag::_1080p }, + { video_resolution::_960x1080, psf::resolution_flag::_1080p }, }; const video_resolution resolution = g_cfg.video.resolution; diff --git a/rpcs3/rpcs3qt/settings_dialog.cpp b/rpcs3/rpcs3qt/settings_dialog.cpp index b9103e3bb8..e17712df16 100644 --- a/rpcs3/rpcs3qt/settings_dialog.cpp +++ b/rpcs3/rpcs3qt/settings_dialog.cpp @@ -469,10 +469,10 @@ settings_dialog::settings_dialog(std::shared_ptr gui_settings, std { video_resolution::_576, psf::resolution_flag::_576p | psf::resolution_flag::_576p_16_9 }, { video_resolution::_720, psf::resolution_flag::_720p }, { video_resolution::_1080, psf::resolution_flag::_1080p }, - { video_resolution::_1600x1080, 0 }, - { video_resolution::_1440x1080, 0 }, - { video_resolution::_1280x1080, 0 }, - { video_resolution::_960x1080, 0 }, + { video_resolution::_1600x1080, psf::resolution_flag::_1080p }, + { video_resolution::_1440x1080, psf::resolution_flag::_1080p }, + { video_resolution::_1280x1080, psf::resolution_flag::_1080p }, + { video_resolution::_960x1080, psf::resolution_flag::_1080p }, }; const int saved_index = ui->resBox->currentIndex();