diff options
author | Strangerke | 2014-12-17 21:31:26 +0100 |
---|---|---|
committer | Strangerke | 2014-12-17 21:31:26 +0100 |
commit | fe627c5ce19482bdb111df7d5018dfcc94030115 (patch) | |
tree | b6716a8df35b4e92e7ad1151fe2b5e2d61f34594 /engines | |
parent | ce1f04b1d5c27ca63c1e01b67ae5bfbe5faa0ee9 (diff) | |
download | scummvm-rg350-fe627c5ce19482bdb111df7d5018dfcc94030115.tar.gz scummvm-rg350-fe627c5ce19482bdb111df7d5018dfcc94030115.tar.bz2 scummvm-rg350-fe627c5ce19482bdb111df7d5018dfcc94030115.zip |
ACCESS: Fix spacing around semicolumn in class definitions
Diffstat (limited to 'engines')
-rw-r--r-- | engines/access/amazon/amazon_logic.h | 12 | ||||
-rw-r--r-- | engines/access/amazon/amazon_player.h | 2 | ||||
-rw-r--r-- | engines/access/amazon/amazon_scripts.h | 2 | ||||
-rw-r--r-- | engines/access/animation.h | 2 | ||||
-rw-r--r-- | engines/access/bubble_box.h | 2 | ||||
-rw-r--r-- | engines/access/char.h | 2 | ||||
-rw-r--r-- | engines/access/martian/martian_scripts.h | 2 | ||||
-rw-r--r-- | engines/access/player.h | 2 | ||||
-rw-r--r-- | engines/access/room.h | 2 | ||||
-rw-r--r-- | engines/access/screen.h | 2 | ||||
-rw-r--r-- | engines/access/scripts.h | 2 | ||||
-rw-r--r-- | engines/access/video.h | 2 |
12 files changed, 17 insertions, 17 deletions
diff --git a/engines/access/amazon/amazon_logic.h b/engines/access/amazon/amazon_logic.h index 5c781727c0..a1fb4eef77 100644 --- a/engines/access/amazon/amazon_logic.h +++ b/engines/access/amazon/amazon_logic.h @@ -42,7 +42,7 @@ public: AmazonManager(AmazonEngine *vm) : _vm(vm) {} }; -class PannedScene: public AmazonManager { +class PannedScene : public AmazonManager { struct PanEntry { SpriteResource *_pObject; int _pImgNum; @@ -78,7 +78,7 @@ public: void mWhileDoOpen(); }; -class Opening: public CampScene { +class Opening : public CampScene { private: int _pCount; @@ -93,7 +93,7 @@ public: void doIntroduction(); }; -class Plane: public PannedScene { +class Plane : public PannedScene { public: int _pCount; Common::Point _position; @@ -111,7 +111,7 @@ public: }; #define JUNGLE_SIZE 3 -class Jungle: public CampScene { +class Jungle : public CampScene { private: void initJWalk2(); void jungleMove(); @@ -157,7 +157,7 @@ public: void doCast(int param1); }; -class River: public PannedScene { +class River : public PannedScene { private: bool _chickenOutFl; const byte *_mapPtr; @@ -212,7 +212,7 @@ public: enum AntDirection { ANT_RIGHT = 0, ANT_LEFT = 1 }; -class Ant: public AmazonManager { +class Ant : public AmazonManager { private: AntDirection _antDirection; AntDirection _pitDirection; diff --git a/engines/access/amazon/amazon_player.h b/engines/access/amazon/amazon_player.h index 2d3797234d..236b8bd1bd 100644 --- a/engines/access/amazon/amazon_player.h +++ b/engines/access/amazon/amazon_player.h @@ -32,7 +32,7 @@ namespace Amazon { class AmazonEngine; -class AmazonPlayer: public Player { +class AmazonPlayer : public Player { private: AmazonEngine *_game; public: diff --git a/engines/access/amazon/amazon_scripts.h b/engines/access/amazon/amazon_scripts.h index bdbabfc84d..e10eefb4f5 100644 --- a/engines/access/amazon/amazon_scripts.h +++ b/engines/access/amazon/amazon_scripts.h @@ -32,7 +32,7 @@ namespace Amazon { class AmazonEngine; -class AmazonScripts: public Scripts { +class AmazonScripts : public Scripts { private: AmazonEngine *_game; protected: diff --git a/engines/access/animation.h b/engines/access/animation.h index 97d45c7b8f..722f5430ab 100644 --- a/engines/access/animation.h +++ b/engines/access/animation.h @@ -82,7 +82,7 @@ public: Animation *getAnimation(int idx) { return _animations[idx]; } }; -class Animation: public Manager { +class Animation : public Manager { private: Common::Array<AnimationFrame *> _frames; diff --git a/engines/access/bubble_box.h b/engines/access/bubble_box.h index 8a4d67ecc2..2c05d096c3 100644 --- a/engines/access/bubble_box.h +++ b/engines/access/bubble_box.h @@ -38,7 +38,7 @@ class AccessEngine; enum BoxType { TYPE_2 = 2, TYPE_4 = 4 }; -class BubbleBox: public Manager { +class BubbleBox : public Manager { private: int _startItem, _startBox; int _charCol, _rowOff; diff --git a/engines/access/char.h b/engines/access/char.h index 882e7077a3..e89cdae49f 100644 --- a/engines/access/char.h +++ b/engines/access/char.h @@ -46,7 +46,7 @@ public: CharEntry(); }; -class CharManager: public Manager { +class CharManager : public Manager { private: void charMenu(); public: diff --git a/engines/access/martian/martian_scripts.h b/engines/access/martian/martian_scripts.h index 9f90643e22..fc7495fc47 100644 --- a/engines/access/martian/martian_scripts.h +++ b/engines/access/martian/martian_scripts.h @@ -32,7 +32,7 @@ namespace Martian { class MartianEngine; -class MartianScripts: public Scripts { +class MartianScripts : public Scripts { private: MartianEngine *_game; protected: diff --git a/engines/access/player.h b/engines/access/player.h index ab4222eece..7c8e9a2e86 100644 --- a/engines/access/player.h +++ b/engines/access/player.h @@ -38,7 +38,7 @@ enum Direction { NONE = 0, UP = 1, DOWN = 2, LEFT = 3, RIGHT = 4, class AccessEngine; -class Player: public ImageEntry, public Manager { +class Player : public ImageEntry, public Manager { protected: int _leftDelta, _rightDelta; int _upDelta, _downDelta; diff --git a/engines/access/room.h b/engines/access/room.h index 1ba4af10e2..44279fa6b1 100644 --- a/engines/access/room.h +++ b/engines/access/room.h @@ -60,7 +60,7 @@ public: enum Function { FN_NONE = 0, FN_CLEAR1 = 1, FN_CLEAR2 = 2, FN_RELOAD = 3, FN_BREAK = 4 }; -class Room: public Manager { +class Room : public Manager { private: void roomLoop(); diff --git a/engines/access/screen.h b/engines/access/screen.h index 1cec75d5e7..bf4cceaf11 100644 --- a/engines/access/screen.h +++ b/engines/access/screen.h @@ -47,7 +47,7 @@ struct ScreenSave { int _screenYOff; }; -class Screen: public ASurface { +class Screen : public ASurface { private: AccessEngine *_vm; byte _tempPalette[PALETTE_SIZE]; diff --git a/engines/access/scripts.h b/engines/access/scripts.h index fbc3e743a5..e12f2826de 100644 --- a/engines/access/scripts.h +++ b/engines/access/scripts.h @@ -35,7 +35,7 @@ class Scripts; #define SCRIPT_START_BYTE 0xE0 #define ROOM_SCRIPT 2000 -class Scripts: public Manager { +class Scripts : public Manager { private: Resource *_resource; int _specialFunction; diff --git a/engines/access/video.h b/engines/access/video.h index 6331ea4405..17825db367 100644 --- a/engines/access/video.h +++ b/engines/access/video.h @@ -33,7 +33,7 @@ namespace Access { enum VideoFlags { VIDEOFLAG_NONE = 0, VIDEOFLAG_BG = 1 }; -class VideoPlayer: public Manager { +class VideoPlayer : public Manager { struct VideoHeader { int _frameCount; int _width, _height; |