diff options
author | Jordi Vilalta Prat | 2009-03-01 09:12:32 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2009-03-01 09:12:32 +0000 |
commit | e5e733781e5b3b1776ff68c44f959aec600424b3 (patch) | |
tree | b434485c1f0d7b886467a831eeb2017a20e5899d /engines/groovie | |
parent | 99df3ccd73962a5ae8f85e212c6fcfcfb14010c6 (diff) | |
download | scummvm-rg350-e5e733781e5b3b1776ff68c44f959aec600424b3.tar.gz scummvm-rg350-e5e733781e5b3b1776ff68c44f959aec600424b3.tar.bz2 scummvm-rg350-e5e733781e5b3b1776ff68c44f959aec600424b3.zip |
Groovie: Merged init() and go() into run()
svn-id: r39023
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/groovie.cpp | 7 | ||||
-rw-r--r-- | engines/groovie/groovie.h | 11 |
2 files changed, 2 insertions, 16 deletions
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp index f08091dac9..8c1fd476f0 100644 --- a/engines/groovie/groovie.cpp +++ b/engines/groovie/groovie.cpp @@ -68,7 +68,7 @@ GroovieEngine::~GroovieEngine() { delete _graphicsMan; } -Common::Error GroovieEngine::init() { +Common::Error GroovieEngine::run() { // Initialize the graphics initGraphics(640, 480, true); @@ -156,13 +156,8 @@ Common::Error GroovieEngine::init() { _script.directGameLoad(slot); } - return Common::kNoError; -} - -Common::Error GroovieEngine::go() { // Check that the game files and the audio tracks aren't together run from // the same cd - checkCD(); // Game timer counter diff --git a/engines/groovie/groovie.h b/engines/groovie/groovie.h index 5407d0b174..55f1829822 100644 --- a/engines/groovie/groovie.h +++ b/engines/groovie/groovie.h @@ -76,16 +76,7 @@ public: protected: // Engine APIs - Common::Error init(); - Common::Error go(); - virtual Common::Error run() { - Common::Error err; - err = init(); - if (err != Common::kNoError) - return err; - return go(); - } - + Common::Error run(); virtual void errorString(const char *buf_input, char *buf_output, int buf_output_size); virtual bool hasFeature(EngineFeature f) const; |