diff options
author | Christopher Page | 2008-05-10 23:44:46 +0000 |
---|---|---|
committer | Christopher Page | 2008-05-10 23:44:46 +0000 |
commit | 307ef24582f04b5fb5858fab4db090a7a01a9ecd (patch) | |
tree | 9f500af187010056c0eb070b2cd74ea92d000dd0 /base | |
parent | e458f046d5c07ce0d12b75d803bf0a0e30d70e7c (diff) | |
download | scummvm-rg350-307ef24582f04b5fb5858fab4db090a7a01a9ecd.tar.gz scummvm-rg350-307ef24582f04b5fb5858fab4db090a7a01a9ecd.tar.bz2 scummvm-rg350-307ef24582f04b5fb5858fab4db090a7a01a9ecd.zip |
Modified game loop to return to launcher, codeblocks layouts update 1.5->1.6
svn-id: r31992
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp index 9129fcc7e1..1f87708cc1 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -224,7 +224,9 @@ static int runGame(const Plugin *plugin, OSystem &system, const Common::String & // Reset the file/directory mappings Common::File::resetDefaultDirectories(); - return 0; + + + return 1; // Changing from return 0, in order to return to launcher } |