diff options
author | bunnei <bunneidev@gmail.com> | 2019-10-06 15:13:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-06 15:13:57 -0400 |
commit | 123c0580b4adfa0c94f347014a0fe98e3ed628e3 (patch) | |
tree | 50131cb7890f59fe2b8cb2539ca54cf09169d4ed /src | |
parent | deecd7f074a0547b8fc08a33fdc547eb63859e3e (diff) | |
parent | 81fff7aec09160db226b291041b51b96881a8a6f (diff) |
Merge pull request #2953 from DarkLordZach/azure-titlebars-gamename
qt: Fix game name format error
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 197e704b4..451e4a4d6 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1903,10 +1903,10 @@ void GMainWindow::UpdateWindowTitle(const QString& title_name) { full_name, branch_name, description, std::string{}, date, build_id))); } else { - const auto fmt = std::string(Common::g_title_bar_format_idle); + const auto fmt = std::string(Common::g_title_bar_format_running); setWindowTitle(QString::fromStdString( fmt::format(fmt.empty() ? "yuzu {0}| {3} | {1}-{2}" : fmt, full_name, branch_name, - description, std::string{}, date, build_id))); + description, title_name.toStdString(), date, build_id))); } } |