diff options
author | Lioncash <mathew1800@gmail.com> | 2014-11-17 15:27:56 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2014-11-17 15:27:59 +0100 |
commit | 827e7a1898587ee68b38dab9fa3826d84fc120ff (patch) | |
tree | 0d997841a594941647956efa2155d76ac9c07720 | |
parent | Merge pull request #195 from lioncash/control (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/common/emu_window.h | 4 |
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() {} |