mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-22 12:12:16 +00:00
The cause for bug #1804403 - "IHNM/ITE: Error loading Game resources (fs-node regression)" was fixed with commits #29327, #29328, #29329. Removed unneeded Amiga-specific code, which should finally fix this bug
svn-id: r29331
This commit is contained in:
parent
e7e0532e1b
commit
bb0bbdef57
@ -440,28 +440,16 @@ bool Resource::createContexts() {
|
||||
sprintf(voicesFileName, "voicesd.cmp");
|
||||
_vm->_gf_compressed_sounds = true;
|
||||
}
|
||||
#ifndef __amigaos4__
|
||||
} else if (Common::File::exists("inherit the earth voices") ||
|
||||
Common::File::exists("inherit the earth voices.cmp")) {
|
||||
_contextsCount++;
|
||||
voicesFileIndex = _contextsCount - 1;
|
||||
if (Common::File::exists("inherit the earth voices")) {
|
||||
sprintf(voicesFileName, "inherit the earth voices");
|
||||
} else {
|
||||
sprintf(voicesFileName, "inherit the earth voices.cmp");
|
||||
_vm->_gf_compressed_sounds = true;
|
||||
}
|
||||
#else
|
||||
} else if (Common::File::exists("\"inherit the earth voices\"") ||
|
||||
Common::File::exists("\"inherit the earth voices.cmp\"")) {
|
||||
if (Common::File::exists("\"inherit the earth voices\"")) {
|
||||
sprintf(voicesFileName, "\"inherit the earth voices\"");
|
||||
} else {
|
||||
sprintf(voicesFileName, "\"inherit the earth voices.cmp\"");
|
||||
_vm->_gf_compressed_sounds = true;
|
||||
}
|
||||
#endif
|
||||
|
||||
_contextsCount++;
|
||||
voicesFileIndex = _contextsCount - 1;
|
||||
|
||||
// The resources in the Wyrmkeep combined Windows/Mac/Linux CD version are little endian, but
|
||||
// the voice file is big endian. If we got such a version with mixed files, mark this voice file
|
||||
|
Loading…
x
Reference in New Issue
Block a user