mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 16:58:26 +00:00
NEWS: Mention Inherit the Earth looping music fix
This commit is contained in:
parent
df56125963
commit
0f152344e1
1
NEWS.md
1
NEWS.md
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user