diff options
author | Paul Gilbert | 2014-02-19 22:01:10 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-02-19 22:01:10 -0500 |
commit | 7593ec29d060268b7102509324d83e87c4ddd77c (patch) | |
tree | 03b9bc85f425b63ae05e58d5ad1875329847dc85 /engines | |
parent | 488bf66c3e451a65ab14a387f681fb91aa5c6253 (diff) | |
download | scummvm-rg350-7593ec29d060268b7102509324d83e87c4ddd77c.tar.gz scummvm-rg350-7593ec29d060268b7102509324d83e87c4ddd77c.tar.bz2 scummvm-rg350-7593ec29d060268b7102509324d83e87c4ddd77c.zip |
MADS: Fix feature flags for Rex Nebular detection entry
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/detection.cpp | 2 | ||||
-rw-r--r-- | engines/mads/detection_tables.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/mads/detection.cpp b/engines/mads/detection.cpp index 73a4b97931..015859f827 100644 --- a/engines/mads/detection.cpp +++ b/engines/mads/detection.cpp @@ -48,7 +48,7 @@ uint32 MADSEngine::getGameID() const { } uint32 MADSEngine::getGameFeatures() const { - return _gameDescription->gameID; + return _gameDescription->features; } uint32 MADSEngine::getFeatures() const { diff --git a/engines/mads/detection_tables.h b/engines/mads/detection_tables.h index 7a66029b9b..7410dce2f6 100644 --- a/engines/mads/detection_tables.h +++ b/engines/mads/detection_tables.h @@ -37,6 +37,8 @@ static const MADSGameDescription gameDescriptions[] = { ADGF_NO_FLAGS, GUIO1(GUIO_NONE) }, + GType_RexNebular, + GF_MADS }, { AD_TABLE_END_MARKER } |