diff options
author | Max Horn | 2008-06-22 10:26:18 +0000 |
---|---|---|
committer | Max Horn | 2008-06-22 10:26:18 +0000 |
commit | c67b91437673e070119c782a33b070083c3d7f27 (patch) | |
tree | 8ff3e2d1ba2c49bc7d27d69204645b0e45f7c906 /base | |
parent | 446f66807f078b574cb31d87bebdcff2f55953fa (diff) | |
download | scummvm-rg350-c67b91437673e070119c782a33b070083c3d7f27.tar.gz scummvm-rg350-c67b91437673e070119c782a33b070083c3d7f27.tar.bz2 scummvm-rg350-c67b91437673e070119c782a33b070083c3d7f27.zip |
Disabled return to launcher on trunk again
svn-id: r32745
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/base/main.cpp b/base/main.cpp index dbf740c2ec..88d9f3bab5 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -228,9 +228,7 @@ static int runGame(const EnginePlugin *plugin, OSystem &system, const Common::St // Reset the file/directory mappings Common::File::resetDefaultDirectories(); - - - return 1; // Changing from return 0, in order to return to launcher + return 0; } @@ -278,6 +276,7 @@ extern "C" int scummvm_main(int argc, char *argv[]) { // Load the plugins. PluginManager::instance().loadPlugins(); + EngineMan.getPlugins(); // Process the remaining command line settings. Must be done after the // config file and the plugins have been loaded. |