diff options
author | Bastien Bouclet | 2017-08-11 19:05:06 +0200 |
---|---|---|
committer | Bastien Bouclet | 2017-08-11 19:05:55 +0200 |
commit | efddaf84ebc138cad41f7f13f3cc6545b8954940 (patch) | |
tree | ff9eaab78dc3b2472d1f5759869d304533edcbbe /engines | |
parent | ee588a8c33b3f75c9ee64ca28ef5010e292b2458 (diff) | |
download | scummvm-rg350-efddaf84ebc138cad41f7f13f3cc6545b8954940.tar.gz scummvm-rg350-efddaf84ebc138cad41f7f13f3cc6545b8954940.tar.bz2 scummvm-rg350-efddaf84ebc138cad41f7f13f3cc6545b8954940.zip |
MOHAWK: Riven: b_Data1.mhk is not required to play the CD version
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/riven.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mohawk/riven.cpp b/engines/mohawk/riven.cpp index 6c2b1a28c1..c7f8d1c3d9 100644 --- a/engines/mohawk/riven.cpp +++ b/engines/mohawk/riven.cpp @@ -390,8 +390,9 @@ bool MohawkEngine_Riven::checkDatafiles() { const char **datafiles = listExpectedDatafiles(); for (int i = 0; datafiles[i] != nullptr; i++) { if (!SearchMan.hasFile(datafiles[i])) { - if (strcmp(datafiles[i], "j_Data3.mhk") == 0) { - // j_Data3.mhk comes from the 1.02 patch. It is not required to play. + if (strcmp(datafiles[i], "j_Data3.mhk") == 0 + || strcmp(datafiles[i], "b_Data1.mhk") == 0) { + // j_Data3.mhk and b_Data1.mhk come from the 1.02 patch. They are not required to play. continue; } |