mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
MOHAWK: Riven: b_Data1.mhk is not required to play the CD version
This commit is contained in:
parent
ee588a8c33
commit
efddaf84eb
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user