removed all ../ entries and made a basic inc path (dependencies are currently broke)
[physics.git] / src / GameStates / Paused.cpp
index 20ef061..f2982b1 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #include "Paused.h"
-#include "../config/config.h"
+#include "config/config.h"
 
 /// ***** Constructors/Destructors *****
 
@@ -46,9 +46,9 @@ void Paused::draw(bool on_top) const
 
 bool Paused::pushMe() const
 {
-    return cfg::pause();
+    return cfg::paused();
 }
 bool Paused::popMe() const
 {
-    return cfg::unPause();
+    return !cfg::paused();
 }