diff options
author | Max Horn | 2009-01-16 05:04:49 +0000 |
---|---|---|
committer | Max Horn | 2009-01-16 05:04:49 +0000 |
commit | e9f0fc21e84b78d5b7f48bcdfca4e083b7026cc5 (patch) | |
tree | e428af3f21408adb8f38dc65e1dc126fa9798ab1 | |
parent | 4c5efaecf413c0a8d664de6f35013814a82798ab (diff) | |
download | scummvm-rg350-e9f0fc21e84b78d5b7f48bcdfca4e083b7026cc5.tar.gz scummvm-rg350-e9f0fc21e84b78d5b7f48bcdfca4e083b7026cc5.tar.bz2 scummvm-rg350-e9f0fc21e84b78d5b7f48bcdfca4e083b7026cc5.zip |
Fixed class indention
svn-id: r35871
-rw-r--r-- | engines/cruise/cruise.h | 44 | ||||
-rw-r--r-- | engines/cruise/detection.cpp | 18 |
2 files changed, 31 insertions, 31 deletions
diff --git a/engines/cruise/cruise.h b/engines/cruise/cruise.h index 9093101ce0..a6bf297998 100644 --- a/engines/cruise/cruise.h +++ b/engines/cruise/cruise.h @@ -43,37 +43,37 @@ struct CRUISEGameDescription; class CruiseEngine: public Engine { - protected: - // Engine APIs - virtual Common::Error init(); - virtual Common::Error go(); +protected: + // Engine APIs + virtual Common::Error init(); + virtual Common::Error go(); - void shutdown(); + void shutdown(); - bool initGame(); + bool initGame(); - public: - CruiseEngine(OSystem * syst, const CRUISEGameDescription *gameDesc); - virtual ~ CruiseEngine(); +public: + CruiseEngine(OSystem * syst, const CRUISEGameDescription *gameDesc); + virtual ~ CruiseEngine(); - int getGameType() const; - uint32 getFeatures() const; - Common::Language getLanguage() const; - Common::Platform getPlatform() const; + int getGameType() const; + uint32 getFeatures() const; + Common::Language getLanguage() const; + Common::Platform getPlatform() const; - bool loadSaveDirectory(void); - void makeSystemMenu(void); + bool loadSaveDirectory(void); + void makeSystemMenu(void); - const CRUISEGameDescription *_gameDescription; + const CRUISEGameDescription *_gameDescription; - Common::RandomSource _rnd; + Common::RandomSource _rnd; - private: - void initialize(void); - bool makeLoad(char *saveName); - void mainLoop(int bootScriptIdx); +private: + void initialize(void); + bool makeLoad(char *saveName); + void mainLoop(int bootScriptIdx); - bool _preLoad; + bool _preLoad; }; extern CruiseEngine *g_cruise; diff --git a/engines/cruise/detection.cpp b/engines/cruise/detection.cpp index 1d59c36cd3..c8aefedbd1 100644 --- a/engines/cruise/detection.cpp +++ b/engines/cruise/detection.cpp @@ -166,18 +166,18 @@ static const Common::ADParams detectionParams = { }; class CruiseMetaEngine : public Common::AdvancedMetaEngine { - public: - CruiseMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {} +public: + CruiseMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {} - virtual const char *getName() const { - return "Cinematique evo 2 engine"; - } + virtual const char *getName() const { + return "Cinematique evo 2 engine"; + } - virtual const char *getCopyright() const { - return "Cruise for a Corpse (C) Delphine Software"; - } + virtual const char *getCopyright() const { + return "Cruise for a Corpse (C) Delphine Software"; + } - virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const; + virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const; }; bool CruiseMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const { |