diff options
author | Max Horn | 2006-05-05 00:28:26 +0000 |
---|---|---|
committer | Max Horn | 2006-05-05 00:28:26 +0000 |
commit | 0bb35a7856ab9335cf400e8529dbf799fcb08772 (patch) | |
tree | 2fe448c009cfb5fd22843f57aabac06b66f5119e /base | |
parent | dad44b45d31319625cf1f0bf884c856bee4205d5 (diff) | |
download | scummvm-rg350-0bb35a7856ab9335cf400e8529dbf799fcb08772.tar.gz scummvm-rg350-0bb35a7856ab9335cf400e8529dbf799fcb08772.tar.bz2 scummvm-rg350-0bb35a7856ab9335cf400e8529dbf799fcb08772.zip |
Corrected a warning message (findGame failures are due to unsupported gameids, and have nothing to do with targets)
svn-id: r22357
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp index 01c2031fcc..c5f646c7a4 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -160,7 +160,7 @@ static const Plugin *detectMain() { if (plugin == 0) { printf("Failed game detection\n"); - warning("%s is an invalid target. Use the --list-targets option to list targets", ConfMan.getActiveDomainName().c_str()); + warning("%s is an invalid gameid. Use the --list-games option to list supported gameid", gameid.c_str()); return 0; } |