aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/detection.cpp')
-rw-r--r--engines/saga/detection.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index 53540186d6..ab0af56cf5 100644
--- a/engines/saga/detection.cpp
+++ b/engines/saga/detection.cpp
@@ -321,15 +321,17 @@ const GameDisplayInfo &SagaEngine::getDisplayInfo() {
switch (_gameDescription->gameId) {
case GID_ITE:
return ITE_DisplayInfo;
+#ifdef ENABLE_IHNM
case GID_IHNM:
return IHNM_DisplayInfo;
+#endif
case GID_DINO:
- return IHNM_DisplayInfo; // TODO
+ return FTA2_DisplayInfo; // TODO
case GID_FTA2:
return FTA2_DisplayInfo;
default:
error("getDisplayInfo: Unknown game ID");
- return IHNM_DisplayInfo; // unreachable
+ return ITE_DisplayInfo; // unreachable
}
}