aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTravis Howell2003-01-03 11:14:21 +0000
committerTravis Howell2003-01-03 11:14:21 +0000
commitf1365f4f2b861ecfed42dea4b534ee14eca245ac (patch)
tree49883b2c15a8a2e5574776f2977f4f8b0822e238 /common
parent758dca49c98dde1c0a217bbd8b055525ab626bde (diff)
downloadscummvm-rg350-f1365f4f2b861ecfed42dea4b534ee14eca245ac.tar.gz
scummvm-rg350-f1365f4f2b861ecfed42dea4b534ee14eca245ac.tar.bz2
scummvm-rg350-f1365f4f2b861ecfed42dea4b534ee14eca245ac.zip
Don't show scumm version number when starting Simon games
svn-id: r6325
Diffstat (limited to 'common')
-rw-r--r--common/gameDetector.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp
index dbf9b57b8d..3c5101db22 100644
--- a/common/gameDetector.cpp
+++ b/common/gameDetector.cpp
@@ -577,8 +577,11 @@ bool GameDetector::detectGame()
_gameRealName = gnl->filename;
_features = gnl->features;
_gameText = gnl->gamename;
- debug(1, "Trying to start game '%s', version %d.%d.%d",
- gnl->gamename, gnl->major, gnl->middle, gnl->minor);
+ if (gnl->major != 99)
+ debug(1, "Trying to start game '%s', version %d.%d.%d",
+ gnl->gamename, gnl->major, gnl->middle, gnl->minor);
+ else
+ debug(1, "Trying to start game '%s'",gnl->gamename);
return true;
}
} while ((++gnl)->filename);