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:
Torbjörn Andersson 2021-11-11 09:42:22 +01:00
parent d7669195b8
commit 430a980820

View File

@ -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);
}