aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2017-10-31 09:17:42 +0100
committerThierry Crozat2018-01-23 02:15:36 +0000
commit201fd0ff56493fce78508d4a1acef6ec8de954cb (patch)
treed457da3ad5df4baf8c5d4459868174cfe1a898b9
parent73c9c7ad50db0d79339aa8888218e0548e51e111 (diff)
downloadscummvm-rg350-201fd0ff56493fce78508d4a1acef6ec8de954cb.tar.gz
scummvm-rg350-201fd0ff56493fce78508d4a1acef6ec8de954cb.tar.bz2
scummvm-rg350-201fd0ff56493fce78508d4a1acef6ec8de954cb.zip
SUPERNOVA: Change detection to use data files instead of executables
-rw-r--r--engines/supernova/detection.cpp46
1 files changed, 23 insertions, 23 deletions
diff --git a/engines/supernova/detection.cpp b/engines/supernova/detection.cpp
index 17db24a01f..e3f485686d 100644
--- a/engines/supernova/detection.cpp
+++ b/engines/supernova/detection.cpp
@@ -37,38 +37,38 @@ static const PlainGameDescriptor supernovaGames[] = {
namespace Supernova {
static const ADGameDescription gameDescriptions[] = {
- // Mission Supernova 1
- {
- "msn1",
- NULL,
- AD_ENTRY1s("msn.exe", "d11264516c529c7fc2ca81d8ba062d9e", 65536),
- Common::DE_DEU,
- Common::kPlatformDOS,
- ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
- },
+ // Mission Supernova 1
{
"msn1",
NULL,
- AD_ENTRY1s("msn.exe", "d11264516c529c7fc2ca81d8ba062d9e", 65536),
+ AD_ENTRY1s("msn_data.000", "f64f16782a86211efa919fbae41e7568", 24163),
+ Common::DE_DEU,
+ Common::kPlatformDOS,
+ ADGF_UNSTABLE,
+ GUIO1(GUIO_NONE)
+ },
+ {
+ "msn1",
+ NULL,
+ AD_ENTRY1s("msn_data.000", "f64f16782a86211efa919fbae41e7568", 24163),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_UNSTABLE,
GUIO1(GUIO_NONE)
},
- // Mission Supernova 2
- {
- "msn2",
- NULL,
- AD_ENTRY1s("ms2.exe", "e1b725393c3665f30efa96e2f46d589e", 82944),
- Common::DE_DEU,
- Common::kPlatformDOS,
- ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
- },
-
- AD_TABLE_END_MARKER
+ // Mission Supernova 2
+ {
+ "msn2",
+ NULL,
+ AD_ENTRY1s("ms2_data.000", "e595610cba4a6d24a763e428d05cc83f", 24805),
+ Common::DE_DEU,
+ Common::kPlatformDOS,
+ ADGF_UNSTABLE,
+ GUIO1(GUIO_NONE)
+ },
+
+ AD_TABLE_END_MARKER
};
}