Skip to content

Commit

Permalink
feat(scummrp): Make "Gap at 0x1234 in XX.LFL" an info, not a warning
Browse files Browse the repository at this point in the history
This one doesn't look very useful, and may confuse users.
  • Loading branch information
dwatteau committed Jul 15, 2024
1 parent 977ad42 commit 707dd3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScummRp/block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ bool OldLFLFile::nextBlock(TreeBlock &subblock)
++_nextSubblockOffset;
}
if (gap)
ScummIO::warning(xsprintf("Gap at 0x%X in %.2i.LFL", o, _id));
ScummIO::info(INF_DETAIL, xsprintf("Gap at 0x%X in %.2i.LFL", o, _id));

_checkDupOffset((byte)_id, _nextSubblockOffset);

Expand Down

0 comments on commit 707dd3f

Please sign in to comment.