diff options
author | Borja Lorente | 2016-06-05 20:44:26 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-14 18:07:22 +0200 |
commit | 6815b0546708fd2154e799f89d65c8724da7250b (patch) | |
tree | d395dc529e654330024d1d677e4053dd10984986 /engines | |
parent | 52d53c25515a93b9f129f0f7aa1d16918f6490d5 (diff) | |
download | scummvm-rg350-6815b0546708fd2154e799f89d65c8724da7250b.tar.gz scummvm-rg350-6815b0546708fd2154e799f89d65c8724da7250b.tar.bz2 scummvm-rg350-6815b0546708fd2154e799f89d65c8724da7250b.zip |
MACVENTURE: Fix detection problem
Diffstat (limited to 'engines')
-rw-r--r-- | engines/macventure/detection.cpp | 2 | ||||
-rw-r--r-- | engines/macventure/detection_tables.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/detection.cpp b/engines/macventure/detection.cpp index 8fa5fab57d..feaf60d7c2 100644 --- a/engines/macventure/detection.cpp +++ b/engines/macventure/detection.cpp @@ -32,7 +32,7 @@ namespace MacVenture { #include "macventure/detection_tables.h" static const PlainGameDescriptor macventureGames[] = { - { "Shadowgate", "Shadowgate" }, + { "shadowgate", "Shadowgate" }, { 0, 0 } }; diff --git a/engines/macventure/detection_tables.h b/engines/macventure/detection_tables.h index 9aa9536c09..9c9b91f696 100644 --- a/engines/macventure/detection_tables.h +++ b/engines/macventure/detection_tables.h @@ -27,7 +27,7 @@ namespace MacVenture { #define BASEGAME(n, v, f, md5, s) {n, v, AD_ENTRY1s(f, md5, s), Common::EN_ANY, Common::kPlatformMacintosh, ADGF_DEFAULT, GUIO0()} static const ADGameDescription gameDescriptions[] = { - BASEGAME("Shadowgate", "Zojoi Rerelease", "Shadowgate.dsk", "4e03e9ef1cd5f65ce1de14d512510537", 839680), // Zojoi Rerelease + BASEGAME("shadowgate", "Zojoi Rerelease", "Shadowgate.dsk", "4e03e9ef1cd5f65ce1de14d512510537", 839680), // Zojoi Rerelease AD_TABLE_END_MARKER }; } // End of namespace MacVenture |