diff options
| author | 2014-11-17 09:27:56 -0500 | |
|---|---|---|
| committer | 2014-11-17 09:27:59 -0500 | |
| commit | 827e7a1898587ee68b38dab9fa3826d84fc120ff (patch) | |
| tree | 0d997841a594941647956efa2155d76ac9c07720 | |
| parent | Merge pull request #195 from lioncash/control (diff) | |
| download | yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.gz yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.tar.xz yuzu-827e7a1898587ee68b38dab9fa3826d84fc120ff.zip | |
emu_window: Fix initializer list order.
Gets rid of a warning on OSX.
Diffstat (limited to '')
| -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: | |||
| 76 | 76 | ||
| 77 | protected: | 77 | protected: |
| 78 | EmuWindow(): | 78 | EmuWindow(): |
| 79 | m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)), | ||
| 79 | m_client_area_width(640), | 80 | m_client_area_width(640), |
| 80 | m_client_area_height(480), | 81 | m_client_area_height(480) |
| 81 | m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)) | ||
| 82 | {} | 82 | {} |
| 83 | virtual ~EmuWindow() {} | 83 | virtual ~EmuWindow() {} |
| 84 | 84 | ||