NEWS: Mention Inherit the Earth looping music fix

This commit is contained in:
Torbjörn Andersson 2021-11-10 20:51:01 +01:00
parent df56125963
commit 0f152344e1
2 changed files with 4 additions and 0 deletions

View File

@ -140,6 +140,7 @@ For a more comprehensive changelog of the latest experimental code, see:
SAGA:
- Added support for ITE GOG Mac CD v1.1.
- Added support for ITE PC-98 Japanese.
- Fixed digitized music not looping in Inherit the Earth.
SCI:
- Added RGB rendering mode (16/32bpp) for SCI0 - SCI1.1 games, which addresses palette

View File

@ -62,6 +62,8 @@ bool Mob::loadFromStream(Common::SeekableReadStream &stream) {
while ((c = stream.readByte()))
_name += c;
debug("_name: %s", _name.c_str());
stream.seek(examTextOffset);
_examText.clear();
c = stream.readByte();
@ -69,6 +71,7 @@ bool Mob::loadFromStream(Common::SeekableReadStream &stream) {
_examText += c;
do {
c = stream.readByte();
debug("%d (%c)", c, (c >= 32 && c < 255) ? c : '.');
_examText += c;
} while (c != 255);
}