diff options
| author | 2020-06-22 15:56:41 +0200 | |
|---|---|---|
| committer | 2020-06-22 15:56:41 +0200 | |
| commit | 8cf6efe6776d8c931ede4e5e74b25b70e3619903 (patch) | |
| tree | 1230977b6ea5ad6e40dd684dbb93a4e5fc8fe596 /src | |
| parent | Add game versio to title bar (diff) | |
| download | yuzu-8cf6efe6776d8c931ede4e5e74b25b70e3619903.tar.gz yuzu-8cf6efe6776d8c931ede4e5e74b25b70e3619903.tar.xz yuzu-8cf6efe6776d8c931ede4e5e74b25b70e3619903.zip | |
Reorder variables to comply with the Auzure build pipeline
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 f552b9401..42bbf8b35 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -2015,8 +2015,8 @@ void GMainWindow::UpdateWindowTitle(const std::string& title_name, | |||
| 2015 | } else { | 2015 | } else { |
| 2016 | const auto fmt = std::string(Common::g_title_bar_format_running); | 2016 | const auto fmt = std::string(Common::g_title_bar_format_running); |
| 2017 | setWindowTitle(QString::fromStdString( | 2017 | setWindowTitle(QString::fromStdString( |
| 2018 | fmt::format(fmt.empty() ? "yuzu {0}| {3} | {4} | {1}-{2}" : fmt, full_name, branch_name, | 2018 | fmt::format(fmt.empty() ? "yuzu {0}| {3} | {6} | {1}-{2}" : fmt, full_name, branch_name, |
| 2019 | description, title_name, title_version, date, build_id))); | 2019 | description, title_name, date, build_id, title_version))); |
| 2020 | } | 2020 | } |
| 2021 | } | 2021 | } |
| 2022 | 2022 | ||