Rename resolutions to better convey irrelevance of aspect ratio
This commit is contained in:
@@ -938,6 +938,22 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
|||||||
case shader_mode::interpreter_only: return tr("Shader Interpreter only", "Shader Mode");
|
case shader_mode::interpreter_only: return tr("Shader Interpreter only", "Shader Mode");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case emu_settings_type::Resolution:
|
||||||
|
switch (static_cast<video_resolution>(index))
|
||||||
|
{
|
||||||
|
case video_resolution::_1080p: return tr("1080p", "Resolution");
|
||||||
|
case video_resolution::_1080i: return tr("1080i", "Resolution");
|
||||||
|
case video_resolution::_720p: return tr("720p", "Resolution");
|
||||||
|
case video_resolution::_480p: return tr("480p", "Resolution");
|
||||||
|
case video_resolution::_480i: return tr("480i", "Resolution");
|
||||||
|
case video_resolution::_576p: return tr("576p", "Resolution");
|
||||||
|
case video_resolution::_576i: return tr("576i", "Resolution");
|
||||||
|
case video_resolution::_1600x1080p: return tr("1600x1080p", "Resolution");
|
||||||
|
case video_resolution::_1440x1080p: return tr("1440x1080p", "Resolution");
|
||||||
|
case video_resolution::_1280x1080p: return tr("1280x1080p", "Resolution");
|
||||||
|
case video_resolution::_960x1080p: return tr("960x1080p", "Resolution");
|
||||||
|
}
|
||||||
|
break;
|
||||||
case emu_settings_type::FrameLimit:
|
case emu_settings_type::FrameLimit:
|
||||||
switch (static_cast<frame_limit_type>(index))
|
switch (static_cast<frame_limit_type>(index))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -508,7 +508,7 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> gui_settings, std
|
|||||||
if (static_cast<video_resolution>(value) == video_resolution::_720p)
|
if (static_cast<video_resolution>(value) == video_resolution::_720p)
|
||||||
{
|
{
|
||||||
// Rename the default resolution for users
|
// Rename the default resolution for users
|
||||||
ui->resBox->setItemText(i, tr("1280x720 (Recommended)", "Resolution"));
|
ui->resBox->setItemText(i, tr("720p (Recommended)", "Resolution"));
|
||||||
|
|
||||||
// Set the current selection to the default if the original setting wasn't valid
|
// Set the current selection to the default if the original setting wasn't valid
|
||||||
if (saved_index_removed)
|
if (saved_index_removed)
|
||||||
|
|||||||
Reference in New Issue
Block a user