From b2127c6c4e0e8247a39631c1d6c826c53f2245b9 Mon Sep 17 00:00:00 2001 From: PlatinumSkink Date: Thu, 15 Oct 2015 13:48:35 +0200 Subject: [PATCH] Fixed error so you can actually play LevelSystemAndSuch branch. --- include/Game/KrakenSystem.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/Game/KrakenSystem.h b/include/Game/KrakenSystem.h index 7783964..945a26e 100644 --- a/include/Game/KrakenSystem.h +++ b/include/Game/KrakenSystem.h @@ -36,12 +36,10 @@ public: bool IsPaused() const { return m_Pause; } void SetPause(const bool& pause) { m_Pause = pause; } private: + bool m_Pause = false; dd::EventRelay m_EPause; bool OnPause(const dd::Events::Pause &event); - - - }; }