diff options
author | Elias Fleckenstein <54945686+EliasFleckenstein03@users.noreply.github.com> | 2020-11-04 16:44:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 16:44:42 +0100 |
commit | 5d9ae5a91c544fc7fbd475decf47cef7e09ef8fc (patch) | |
tree | c980d614fec4a5495798be3e79e033229062c3cd /src/client/gameui.h | |
parent | 28f6a79706b088c37268a59d90878220dc4ef9c7 (diff) | |
parent | 3af10766fd2b58b068e970266724d7eb10e9316b (diff) | |
download | dragonfireclient-5d9ae5a91c544fc7fbd475decf47cef7e09ef8fc.tar.xz |
Merge branch 'master' into master
Diffstat (limited to 'src/client/gameui.h')
-rw-r--r-- | src/client/gameui.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/gameui.h b/src/client/gameui.h index 8a1b5650d..2278ad1d6 100644 --- a/src/client/gameui.h +++ b/src/client/gameui.h @@ -85,7 +85,8 @@ public: const bool isChatVisible() { - return m_flags.show_chat && m_recent_chat_count != 0 && m_profiler_current_page == 0; + return m_flags.show_chat && m_recent_chat_count != 0 && + m_profiler_current_page == 0; } void setChatText(const EnrichedString &chat_text, u32 recent_chat_count); @@ -112,7 +113,7 @@ private: gui::IGUIStaticText *m_guitext = nullptr; // First line of debug text gui::IGUIStaticText *m_guitext2 = nullptr; // Second line of debug text gui::IGUIStaticText *m_guitext_coords = nullptr; - + gui::IGUIStaticText *m_guitext_info = nullptr; // At the middle of the screen std::wstring m_infotext; |