diff options
author | Max Horn | 2006-04-23 14:47:43 +0000 |
---|---|---|
committer | Max Horn | 2006-04-23 14:47:43 +0000 |
commit | 5e3e026f92cca8fb75800baa5eaf3918cb9e08ca (patch) | |
tree | 39b53e0384ae1df1771ae5887181182ed96405ed /base | |
parent | f25cb2e7356bc6c5ffda6e2cb3b18206c8377e24 (diff) | |
download | scummvm-rg350-5e3e026f92cca8fb75800baa5eaf3918cb9e08ca.tar.gz scummvm-rg350-5e3e026f92cca8fb75800baa5eaf3918cb9e08ca.tar.bz2 scummvm-rg350-5e3e026f92cca8fb75800baa5eaf3918cb9e08ca.zip |
Also output the description when running DETECTOR_TESTING_HACK
svn-id: r22106
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp index 772dafb145..48b00a0aef 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -336,8 +336,9 @@ extern "C" int scummvm_main(int argc, char *argv[]) { } for (DetectedGameList::iterator x = candidates.begin(); x != candidates.end(); ++x) { - printf(" gameid '%s', language '%s', platform '%s'\n", + printf(" gameid '%s', desc '%s', language '%s', platform '%s'\n", x->gameid.c_str(), + x->description.c_str(), Common::getLanguageCode(x->language), Common::getPlatformCode(x->platform)); } |