summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-11-17 15:27:56 +0100
committerLioncash <mathew1800@gmail.com>2014-11-17 15:27:59 +0100
commit827e7a1898587ee68b38dab9fa3826d84fc120ff (patch)
tree0d997841a594941647956efa2155d76ac9c07720 /src/common
parentMerge pull request #195 from lioncash/control (diff)
downloadyuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.gz
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.bz2
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.lz
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.xz
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.zst
yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/emu_window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index 4d09acb8b..6c2b598f6 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -76,9 +76,9 @@ public:
protected:
EmuWindow():
+ m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)),
m_client_area_width(640),
- m_client_area_height(480),
- m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc))
+ m_client_area_height(480)
{}
virtual ~EmuWindow() {}