diff options
author | Eugene Sandulenko | 2007-06-12 12:22:25 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-06-12 12:22:25 +0000 |
commit | 6e5b70f5e9f8690b467ea8837e727e1048838788 (patch) | |
tree | 99421afdf99a4b66be53c398c048133bc79c614e /engines/kyra | |
parent | 72cfa9d8293aa897a89d577d9844a2a286d8f0e2 (diff) | |
download | scummvm-rg350-6e5b70f5e9f8690b467ea8837e727e1048838788.tar.gz scummvm-rg350-6e5b70f5e9f8690b467ea8837e727e1048838788.tar.bz2 scummvm-rg350-6e5b70f5e9f8690b467ea8837e727e1048838788.zip |
Patch #1733764: "Fallback detection patch". GSoC student.
svn-id: r27375
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/detection.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/kyra/detection.cpp b/engines/kyra/detection.cpp index 7e02271920..00d6cae81b 100644 --- a/engines/kyra/detection.cpp +++ b/engines/kyra/detection.cpp @@ -133,7 +133,9 @@ PluginError Engine_KYRA_create(OSystem *syst, Engine **engine) { assert(engine); const char *gameid = ConfMan.get("gameid").c_str(); - const KYRAGameDescription *gd = (const KYRAGameDescription *)Common::AdvancedDetector::detectBestMatchingGame(detectionParams); + Common::EncapsulatedADGameDesc encapsulatedDesc = Common::AdvancedDetector::detectBestMatchingGame(detectionParams); + const KYRAGameDescription *gd = (const KYRAGameDescription *)(encapsulatedDesc.realDesc); + if (gd == 0) { // maybe add non md5 based detection again? return kNoGameDataFoundError; |