diff options
| author | 2014-04-10 20:02:30 -0400 | |
|---|---|---|
| committer | 2014-04-10 20:04:38 -0400 | |
| commit | 7b3cde1f3ad827a32732f05959d1971ec0fc8cf2 (patch) | |
| tree | 46a8165b2a44121147e717afeab5d474cdff3f68 /src | |
| parent | fixed a bunch of errors in CMakeLists (diff) | |
| download | yuzu-7b3cde1f3ad827a32732f05959d1971ec0fc8cf2.tar.gz yuzu-7b3cde1f3ad827a32732f05959d1971ec0fc8cf2.tar.xz yuzu-7b3cde1f3ad827a32732f05959d1971ec0fc8cf2.zip | |
added missing const to GetWindowTitle
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/emu_window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 731784756..e70b99ec1 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h | |||
| @@ -55,7 +55,7 @@ public: | |||
| 55 | m_client_area_height = val; | 55 | m_client_area_height = val; |
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | std::string GetWindowTitle() { | 58 | std::string GetWindowTitle() const { |
| 59 | return m_window_title; | 59 | return m_window_title; |
| 60 | } | 60 | } |
| 61 | 61 | ||