Fixed code style warnings
parent
9639dc5f96
commit
98dd9f90c8
|
@ -17,10 +17,10 @@
|
||||||
* along with this program. If not, see http://gnu.org/licenses
|
* along with this program. If not, see http://gnu.org/licenses
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <math/geometry.h>
|
|
||||||
#include "object/auto/autohouston.h"
|
#include "object/auto/autohouston.h"
|
||||||
|
|
||||||
|
#include "math/geometry.h"
|
||||||
|
|
||||||
#include "object/old_object.h"
|
#include "object/old_object.h"
|
||||||
|
|
||||||
#include "ui/controls/interface.h"
|
#include "ui/controls/interface.h"
|
||||||
|
|
|
@ -26,9 +26,10 @@
|
||||||
|
|
||||||
#include "level/robotmain.h"
|
#include "level/robotmain.h"
|
||||||
|
|
||||||
#include "object/object_create_params.h"
|
|
||||||
#include "object/object_manager.h"
|
|
||||||
#include "object/object.h"
|
#include "object/object.h"
|
||||||
|
#include "object/object_manager.h"
|
||||||
|
|
||||||
|
#include "sound/sound.h"
|
||||||
|
|
||||||
#include "ui/controls/interface.h"
|
#include "ui/controls/interface.h"
|
||||||
#include "ui/controls/window.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 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 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()
|
void CDebugMenu::CreateInterface()
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,12 +19,13 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <math/point.h>
|
#include "math/point.h"
|
||||||
#include <sound/sound.h>
|
|
||||||
#include "object/object_type.h"
|
#include "object/object_type.h"
|
||||||
|
|
||||||
class CRobotMain;
|
class CRobotMain;
|
||||||
class CObjectManager;
|
class CObjectManager;
|
||||||
|
class CSoundInterface;
|
||||||
struct Event;
|
struct Event;
|
||||||
|
|
||||||
namespace Gfx
|
namespace Gfx
|
||||||
|
|
Loading…
Reference in New Issue