diff options
author | Eugene Sandulenko | 2009-06-06 17:57:39 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-06-06 17:57:39 +0000 |
commit | eb909702af7a1fc48c77b000cc4b4e647ebf4e60 (patch) | |
tree | 30fec2c9212ffc4bc07901c0de297476e925c05c /engines/sword2 | |
parent | 8eb417e15e978729b6724a9e9da38b9d6897e5de (diff) | |
download | scummvm-rg350-eb909702af7a1fc48c77b000cc4b4e647ebf4e60.tar.gz scummvm-rg350-eb909702af7a1fc48c77b000cc4b4e647ebf4e60.tar.bz2 scummvm-rg350-eb909702af7a1fc48c77b000cc4b4e647ebf4e60.zip |
Add GUI options support to Sky, Queen and Sword1&2 engines (which do not use AD)
svn-id: r41274
Diffstat (limited to 'engines/sword2')
-rw-r--r-- | engines/sword2/sword2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword2/sword2.cpp b/engines/sword2/sword2.cpp index c840a50f0a..cf44b4c99c 100644 --- a/engines/sword2/sword2.cpp +++ b/engines/sword2/sword2.cpp @@ -148,7 +148,7 @@ GameList Sword2MetaEngine::detectGames(const Common::FSList &fslist) const { if (0 == scumm_stricmp(g->detectname, fileName)) { // Match found, add to list of candidates, then abort inner loop. - detectedGames.push_back(GameDescriptor(g->gameid, g->description)); + detectedGames.push_back(GameDescriptor(g->gameid, g->description, Common::UNK_LANG, Common::kPlatformUnknown, Common::GUIO_NOMIDI)); break; } } |