aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-06-12 12:22:25 +0000
committerEugene Sandulenko2007-06-12 12:22:25 +0000
commit6e5b70f5e9f8690b467ea8837e727e1048838788 (patch)
tree99421afdf99a4b66be53c398c048133bc79c614e /engines/saga/detection.cpp
parent72cfa9d8293aa897a89d577d9844a2a286d8f0e2 (diff)
downloadscummvm-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/saga/detection.cpp')
-rw-r--r--engines/saga/detection.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index 6b73c6c91e..2096ca9af1 100644
--- a/engines/saga/detection.cpp
+++ b/engines/saga/detection.cpp
@@ -124,7 +124,9 @@ REGISTER_PLUGIN(SAGA, "SAGA Engine", "Inherit the Earth (C) Wyrmkeep Entertainme
namespace Saga {
bool SagaEngine::initGame() {
- _gameDescription = (const SAGAGameDescription *)Common::AdvancedDetector::detectBestMatchingGame(detectionParams);
+ Common::EncapsulatedADGameDesc encapsulatedDesc = Common::AdvancedDetector::detectBestMatchingGame(detectionParams);
+ _gameDescription = (const SAGAGameDescription *)(encapsulatedDesc.realDesc);
+
if (_gameDescription == 0)
return false;