fixed non-used argument, compiler warnings
[physics.git] / src / GameStates / Running.cpp
index cafa9af..1356891 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "Running.h"
 
-#include "../entityManager.h"
+#include "entityManager.h"
 
 
 /// ***** Constructors/Destructors *****
@@ -47,7 +47,7 @@ void Running::update(float time_step, bool on_top) const
         manager::update(time_step);
     }
 }
-void Running::draw(bool on_top) const
+void Running::draw(bool /*on_top*/) const
 {
     manager::draw();
 }