mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
VS 16.9.0 compilation workaround
This commit is contained in:
parent
826dc7d5a6
commit
b09ac19e61
1 changed files with 2 additions and 2 deletions
|
@ -1414,9 +1414,9 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> gui_settings, std
|
||||||
|
|
||||||
QString glossary;
|
QString glossary;
|
||||||
|
|
||||||
for (const auto& [format, description] : window_title_glossary)
|
for (const auto& entry : window_title_glossary)
|
||||||
{
|
{
|
||||||
glossary += format + "\t = " + description + "\n";
|
glossary += entry.first + "\t = " + entry.second + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
return tr("Glossary:\n\n%0\nPreview:\n\n%1\n", "Game window title").arg(glossary).arg(game_window_title);
|
return tr("Glossary:\n\n%0\nPreview:\n\n%1\n", "Game window title").arg(glossary).arg(game_window_title);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue