mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-02 15:02:11 +00:00
Allow any 1080p selection if the game supports 1080p
This commit is contained in:
parent
4aa83d1350
commit
cebf6dcd01
@ -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;
|
||||
|
@ -469,10 +469,10 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> 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();
|
||||
|
Loading…
Reference in New Issue
Block a user