diff options
| -rw-r--r-- | src/yuzu/main.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 0bd0c5b04..552c2cc63 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -2920,8 +2920,13 @@ void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_vie | |||
| 2920 | if (title_name.empty()) { | 2920 | if (title_name.empty()) { |
| 2921 | setWindowTitle(QString::fromStdString(window_title)); | 2921 | setWindowTitle(QString::fromStdString(window_title)); |
| 2922 | } else { | 2922 | } else { |
| 2923 | const auto run_title = | 2923 | const auto run_title = [window_title, title_name, title_version, gpu_vendor]() { |
| 2924 | fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, gpu_vendor); | 2924 | if (title_version.empty()) { |
| 2925 | return fmt::format("{} | {} | {}", window_title, title_name, gpu_vendor); | ||
| 2926 | } | ||
| 2927 | return fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, | ||
| 2928 | gpu_vendor); | ||
| 2929 | }(); | ||
| 2925 | setWindowTitle(QString::fromStdString(run_title)); | 2930 | setWindowTitle(QString::fromStdString(run_title)); |
| 2926 | } | 2931 | } |
| 2927 | } | 2932 | } |