summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/yuzu/main.cpp4
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) {
1903 full_name, branch_name, description, 1903 full_name, branch_name, description,
1904 std::string{}, date, build_id))); 1904 std::string{}, date, build_id)));
1905 } else { 1905 } else {
1906 const auto fmt = std::string(Common::g_title_bar_format_idle); 1906 const auto fmt = std::string(Common::g_title_bar_format_running);
1907 setWindowTitle(QString::fromStdString( 1907 setWindowTitle(QString::fromStdString(
1908 fmt::format(fmt.empty() ? "yuzu {0}| {3} | {1}-{2}" : fmt, full_name, branch_name, 1908 fmt::format(fmt.empty() ? "yuzu {0}| {3} | {1}-{2}" : fmt, full_name, branch_name,
1909 description, std::string{}, date, build_id))); 1909 description, title_name.toStdString(), date, build_id)));
1910 } 1910 }
1911} 1911}
1912 1912