Skip to content

Commit 8e1281e

Browse files
committed
Revert "feat(scummtr): Warn when the "Indy3 Mac hack" is used elsewhere"
This reverts commit ef0a004. Just add an internal comment about this, but don't print a warning by default, as it's quite spammy for some games such as Loom EGA.
1 parent 71e6412 commit 8e1281e

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

src/ScummRp/block.cpp

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1490,16 +1490,10 @@ bool OldLFLFile::nextBlock(TreeBlock &subblock)
14901490

14911491
// TODO Hack for Indy3 Mac. In 76.LFL SO_27 (0x4CA8) has a wrong size and hides 4 sounds.
14921492
// XXX: this isn't just triggered in Indy3 Mac, all EGA games appear to hit this...
1493-
// XXX: and it also appears to be related to <https://github.com/dwatteau/scummtr/issues/60>
1493+
// (see: <https://github.com/dwatteau/scummtr/issues/60>)
14941494
if (w >= 4 && b == 0 && w + _nextSubblockOffset <= _file->size())
14951495
{
1496-
const char *msg = xsprintf("Fixing unexpected size at 0x%X in %.2i.LFL", o, _id);
1497-
1498-
if (ScummRp::game.id == GID_INDY3 && (ScummRp::game.features & GF_MACINTOSH))
1499-
ScummIO::info(INF_DETAIL, msg);
1500-
else
1501-
ScummIO::warning(msg);
1502-
1496+
ScummIO::info(INF_DETAIL, xsprintf("Fixing unexpected size at 0x%X in %.2i.LFL", o, _id));
15031497
break;
15041498
}
15051499

0 commit comments

Comments
 (0)