mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
Unfortunately the workaround for Macintosh version of water is still required.
svn-id: r21231
This commit is contained in:
parent
d57e2e88c0
commit
230a68755e
@ -1759,6 +1759,13 @@ void ScummEngine_v72he::o72_openFile() {
|
|||||||
|
|
||||||
debug(1,"Original filename %s", filename);
|
debug(1,"Original filename %s", filename);
|
||||||
|
|
||||||
|
// WORKAROUND: For filename difference in Macintosh version of water.
|
||||||
|
// Uses HE7 filename of 'Water (7)' instead of 'Water Worries (7)'.
|
||||||
|
if (_game.id == GID_WATER && _game.heversion == 99 && _game.platform == Common::kPlatformMacintosh &&
|
||||||
|
!strcmp((char *)filename, "Water Worries (7)")) {
|
||||||
|
strcpy((char *)filename, "Water (7)");
|
||||||
|
}
|
||||||
|
|
||||||
int r = convertFilePath(filename);
|
int r = convertFilePath(filename);
|
||||||
debug(1,"Final filename to %s", filename + r);
|
debug(1,"Final filename to %s", filename + r);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user