mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 16:58:26 +00:00
PRINCE: Remove debug code I accidentally committed
See 0f152344e1 (NEWS: Mention Inherit the Earth looping music fix, 2021-11-10)
This commit is contained in:
parent
d7669195b8
commit
430a980820
@ -62,8 +62,6 @@ 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();
|
||||
@ -71,7 +69,6 @@ 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