aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/dragonsphere
diff options
context:
space:
mode:
authorJohannes Schickel2014-05-27 00:58:25 +0200
committerJohannes Schickel2014-05-27 00:58:25 +0200
commitdb3ca8255fd0f237e2b180a94e3124e0caf00e45 (patch)
treec9e978592f866b78e1119b99e29ed496becc3d10 /engines/mads/dragonsphere
parent9866aba2e43da914a17d17b695456ca25a875469 (diff)
downloadscummvm-rg350-db3ca8255fd0f237e2b180a94e3124e0caf00e45.tar.gz
scummvm-rg350-db3ca8255fd0f237e2b180a94e3124e0caf00e45.tar.bz2
scummvm-rg350-db3ca8255fd0f237e2b180a94e3124e0caf00e45.zip
MADS: More formatting fixes.
Add space before : in inheritance.
Diffstat (limited to 'engines/mads/dragonsphere')
-rw-r--r--engines/mads/dragonsphere/dragonsphere_scenes.h2
-rw-r--r--engines/mads/dragonsphere/game_dragonsphere.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/mads/dragonsphere/dragonsphere_scenes.h b/engines/mads/dragonsphere/dragonsphere_scenes.h
index 2d23381d25..a6c778eca7 100644
--- a/engines/mads/dragonsphere/dragonsphere_scenes.h
+++ b/engines/mads/dragonsphere/dragonsphere_scenes.h
@@ -677,7 +677,7 @@ public:
};
// TODO: Temporary, remove once implemented properly
-class DummyScene: public DragonsphereScene {
+class DummyScene : public DragonsphereScene {
public:
DummyScene(MADSEngine *vm) : DragonsphereScene(vm) {
warning("Unimplemented scene");
diff --git a/engines/mads/dragonsphere/game_dragonsphere.h b/engines/mads/dragonsphere/game_dragonsphere.h
index b4c4c41d20..5147f75178 100644
--- a/engines/mads/dragonsphere/game_dragonsphere.h
+++ b/engines/mads/dragonsphere/game_dragonsphere.h
@@ -89,7 +89,7 @@ enum InventoryObject {
};
// HACK: A stub for now, remove from here once it's implemented properly
-class DragonsphereGlobals: public Globals {
+class DragonsphereGlobals : public Globals {
public:
DragonsphereGlobals() {
resize(210); // Rex has 210 globals
@@ -97,7 +97,7 @@ public:
virtual ~DragonsphereGlobals() {}
};
-class GameDragonsphere: public Game {
+class GameDragonsphere : public Game {
friend class Game;
protected:
GameDragonsphere(MADSEngine *vm);
@@ -125,7 +125,7 @@ public:
};
-class Section1Handler: public SectionHandler {
+class Section1Handler : public SectionHandler {
public:
Section1Handler(MADSEngine *vm) : SectionHandler(vm) {}