summaryrefslogtreecommitdiffstats
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-24 14:10:56 +0200
committerLioncash <mathew1800@gmail.com>2018-10-24 14:14:26 +0200
commit2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217 (patch)
treebf2dec83abd08def4383e2f4582cddd5a992b357 /src/yuzu/bootmanager.cpp
parentMerge pull request #1552 from FearlessTobi/port-4336 (diff)
downloadyuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar.gz
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar.bz2
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar.lz
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar.xz
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.tar.zst
yuzu-2cbc284c2bac4cf7e6bf1bbd3fa903d722af6217.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/bootmanager.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index e8ab23326..39eef8858 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -8,7 +8,6 @@
#include "common/microprofile.h"
#include "common/scm_rev.h"
-#include "common/string_util.h"
#include "core/core.h"
#include "core/frontend/framebuffer_layout.h"
#include "core/settings.h"
@@ -107,9 +106,8 @@ private:
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
: QWidget(parent), child(nullptr), emu_thread(emu_thread) {
- std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_name,
- Common::g_scm_branch, Common::g_scm_desc);
- setWindowTitle(QString::fromStdString(window_title));
+ setWindowTitle(QStringLiteral("yuzu %1 | %2-%3")
+ .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
setAttribute(Qt::WA_AcceptTouchEvents);
InputCommon::Init();