From efddaf84ebc138cad41f7f13f3cc6545b8954940 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Fri, 11 Aug 2017 19:05:06 +0200 Subject: MOHAWK: Riven: b_Data1.mhk is not required to play the CD version --- engines/mohawk/riven.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines/mohawk') 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; } -- cgit v1.2.3