Fixed code style warnings
parent
9639dc5f96
commit
98dd9f90c8
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue