diff options
author | aviloria | 2019-12-02 17:54:45 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-12-02 23:12:30 +0200 |
commit | 478f66f3d7f95a80b5ffccc5ead50cb42cb01e23 (patch) | |
tree | ef67c1e0caeec3d6e627a977e45adb92a84f3053 | |
parent | b6db7d1155163faf003305cd5710b6854d789272 (diff) | |
download | scummvm-rg350-478f66f3d7f95a80b5ffccc5ead50cb42cb01e23.tar.gz scummvm-rg350-478f66f3d7f95a80b5ffccc5ead50cb42cb01e23.tar.bz2 scummvm-rg350-478f66f3d7f95a80b5ffccc5ead50cb42cb01e23.zip |
WINTERMUTE: Fix ritter demo MD5 hash
The MD5 hash for this game was wrong (hasing the whole file, not only the first 5000bytes)
-rw-r--r-- | engines/wintermute/detection_tables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h index 6be4cec633..23adabf3c5 100644 --- a/engines/wintermute/detection_tables.h +++ b/engines/wintermute/detection_tables.h @@ -2601,7 +2601,7 @@ static const WMEGameDescription gameDescriptions[] = { // 1 1/2 Ritter: Auf der Suche nach der hinreissenden Herzelinde (German demo) WME_WINENTRY("ritter", "Demo", - WME_ENTRY1s("data.dcp", "408474b813553978880cf4f36cc38793", 99975952), Common::DE_DEU, ADGF_UNSTABLE | ADGF_DEMO, WME_1_8_6), + WME_ENTRY1s("data.dcp", "7fadb30dbe987528489f50bd85cc0c12", 99975952), Common::DE_DEU, ADGF_UNSTABLE | ADGF_DEMO, WME_1_8_6), // Satan and Sons (Demo) WME_WINENTRY("satanandsons", "Demo", |