setup config to be one file
[physics.git] / src / GameStates / Paused.cpp
index 8f35c70..20ef061 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #include "Paused.h"
-#include "../configs/paused_cfg.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::pause();
 }
 bool Paused::popMe() const
 {
-    return CFG::unPause();
+    return cfg::unPause();
 }