aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJonathan Gray2003-01-01 16:07:08 +0000
committerJonathan Gray2003-01-01 16:07:08 +0000
commit53ba3e7ceebd3f89e27bedee25bbaa1052232861 (patch)
treec01b8677e4f5e97508544690d3740e67dbc19287 /common
parentb5d0e48695d9d200cb3cbab37ef3a9a8db6d2088 (diff)
downloadscummvm-rg350-53ba3e7ceebd3f89e27bedee25bbaa1052232861.tar.gz
scummvm-rg350-53ba3e7ceebd3f89e27bedee25bbaa1052232861.tar.bz2
scummvm-rg350-53ba3e7ceebd3f89e27bedee25bbaa1052232861.zip
change detected game to trying to start game as this message is displayed even when there aren't any resource files in the specified directory
svn-id: r6313
Diffstat (limited to 'common')
-rw-r--r--common/gameDetector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp
index 2df831395e..dbf9b57b8d 100644
--- a/common/gameDetector.cpp
+++ b/common/gameDetector.cpp
@@ -577,7 +577,7 @@ bool GameDetector::detectGame()
_gameRealName = gnl->filename;
_features = gnl->features;
_gameText = gnl->gamename;
- debug(1, "Detected game '%s', version %d.%d.%d",
+ debug(1, "Trying to start game '%s', version %d.%d.%d",
gnl->gamename, gnl->major, gnl->middle, gnl->minor);
return true;
}