Allow to add architecture to game window title

This commit is contained in:
Megamouse
2026-06-18 15:53:00 +02:00
parent 8be3a398dc
commit 5ee92d2e6c
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -45,6 +45,11 @@ namespace rpcs3
title_string += '%'; title_string += '%';
break; break;
} }
case 'A':
{
title_string += utils::get_architecture();
break;
}
case 'T': case 'T':
{ {
title_string += title_data.title; title_string += title_data.title;
+2 -1
View File
@@ -2147,7 +2147,8 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> gui_settings, std
{ "%R", tr("Renderer", "Game window title") }, { "%R", tr("Renderer", "Game window title") },
{ "%T", tr("Title", "Game window title") }, { "%T", tr("Title", "Game window title") },
{ "%t", tr("Title ID", "Game window title") }, { "%t", tr("Title ID", "Game window title") },
{ "%V", tr("RPCS3 Version", "Game window title") } { "%V", tr("RPCS3 Version", "Game window title") },
{ "%A", tr("Architecture", "Game window title") }
}; };
QString glossary; QString glossary;