diff options
author | Lioncash <mathew1800@gmail.com> | 2021-06-23 09:59:56 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-06-23 13:48:21 -0400 |
commit | d0b1f2bd05a2fcadbb4c148be2105e337dd986e8 (patch) | |
tree | 17e7abb608ab936ae6696e0507c9d1441256c66a /src/yuzu/about_dialog.cpp | |
parent | c3fe0717235eae5fffc62b16302d616d4459071d (diff) |
General: Resolve fmt specifiers to adhere to 8.0.0 API where applicable
Also removes some deprecated API usages.
Diffstat (limited to 'src/yuzu/about_dialog.cpp')
-rw-r--r-- | src/yuzu/about_dialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/about_dialog.cpp b/src/yuzu/about_dialog.cpp index a2e0e6962..6b0155a78 100644 --- a/src/yuzu/about_dialog.cpp +++ b/src/yuzu/about_dialog.cpp @@ -14,7 +14,8 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDia const auto build_id = std::string(Common::g_build_id); const auto yuzu_build = fmt::format("yuzu Development Build | {}-{}", branch_name, description); - const auto override_build = fmt::format(std::string(Common::g_title_bar_format_idle), build_id); + const auto override_build = + fmt::format(fmt::runtime(std::string(Common::g_title_bar_format_idle)), build_id); const auto yuzu_build_version = override_build.empty() ? yuzu_build : override_build; ui->setupUi(this); |