[Scummvm-git-logs] scummvm master -> 430a9808201237acbc387498d554f77558cdc9bc

eriktorbjorn eriktorbjorn at telia.com
Thu Nov 11 08:46:30 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
430a980820 PRINCE: Remove debug code I accidentally committed


Commit: 430a9808201237acbc387498d554f77558cdc9bc
    https://github.com/scummvm/scummvm/commit/430a9808201237acbc387498d554f77558cdc9bc
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2021-11-11T09:42:22+01:00

Commit Message:
PRINCE: Remove debug code I accidentally committed

See 0f152344e1 (NEWS: Mention Inherit the Earth looping music fix,
2021-11-10)

Changed paths:
    engines/prince/mob.cpp


diff --git a/engines/prince/mob.cpp b/engines/prince/mob.cpp
index 9c83741b08..5a369aa337 100644
--- a/engines/prince/mob.cpp
+++ b/engines/prince/mob.cpp
@@ -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);
 	}




More information about the Scummvm-git-logs mailing list