diff --git a/src/object/auto/autohouston.cpp b/src/object/auto/autohouston.cpp index 9ace4085..2853be89 100644 --- a/src/object/auto/autohouston.cpp +++ b/src/object/auto/autohouston.cpp @@ -17,10 +17,10 @@ * along with this program. If not, see http://gnu.org/licenses */ - -#include <math/geometry.h> #include "object/auto/autohouston.h" +#include "math/geometry.h" + #include "object/old_object.h" #include "ui/controls/interface.h" diff --git a/src/ui/debug_menu.cpp b/src/ui/debug_menu.cpp index 88e62c10..92390386 100644 --- a/src/ui/debug_menu.cpp +++ b/src/ui/debug_menu.cpp @@ -26,9 +26,10 @@ #include "level/robotmain.h" -#include "object/object_create_params.h" -#include "object/object_manager.h" #include "object/object.h" +#include "object/object_manager.h" + +#include "sound/sound.h" #include "ui/controls/interface.h" #include "ui/controls/window.h" @@ -62,7 +63,7 @@ void CDebugMenu::ToggleInterface() const Math::Point dim = Math::Point(33.0f/640.0f, 33.0f/480.0f); const float ox = 3.0f/640.0f, oy = 3.0f/480.0f; -const float sx = 33.0f/640.0f, sy = 33.0f/480.0f; +const float /*sx = 33.0f/640.0f,*/ sy = 33.0f/480.0f; void CDebugMenu::CreateInterface() { @@ -426,4 +427,4 @@ bool CDebugMenu::HandleTeleport(Math::Point mousePos) return true; } -} \ No newline at end of file +} diff --git a/src/ui/debug_menu.h b/src/ui/debug_menu.h index 2fb4b9de..a45623ac 100644 --- a/src/ui/debug_menu.h +++ b/src/ui/debug_menu.h @@ -19,12 +19,13 @@ #pragma once -#include <math/point.h> -#include <sound/sound.h> +#include "math/point.h" + #include "object/object_type.h" class CRobotMain; class CObjectManager; +class CSoundInterface; struct Event; namespace Gfx