aboutsummaryrefslogtreecommitdiff
path: root/base/game.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-01-28 01:01:36 +0000
committerEugene Sandulenko2007-01-28 01:01:36 +0000
commitb8a48f5751d77f4f4961314ab05bdb4341619114 (patch)
treef09ba37435f951e1b6395b3d406d184ef41e6dd7 /base/game.cpp
parent23a1efe628f1959b164dd06407acc35a8fdbdac6 (diff)
downloadscummvm-rg350-b8a48f5751d77f4f4961314ab05bdb4341619114.tar.gz
scummvm-rg350-b8a48f5751d77f4f4961314ab05bdb4341619114.tar.bz2
scummvm-rg350-b8a48f5751d77f4f4961314ab05bdb4341619114.zip
Fix regression which prevented to run games specified only in command line
and not in config file. svn-id: r25240
Diffstat (limited to 'base/game.cpp')
-rw-r--r--base/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/game.cpp b/base/game.cpp
index a20acaae95..cc0cb2c846 100644
--- a/base/game.cpp
+++ b/base/game.cpp
@@ -68,7 +68,7 @@ GameDescriptor findGame(const Common::String &gameName, const Plugin **plugin) {
PluginList::const_iterator iter = plugins.begin();
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
result = (*iter)->findGame(gameName.c_str());
- if (!result.gameid().empty()) {
+ if (result.contains("gameid") && !result["gameid"].empty()) {
if (plugin)
*plugin = *iter;
break;