[Scummvm-git-logs] scummvm master -> c126a2d46a1c0240de8f50cf3543574823d99438

neuromancer noreply at scummvm.org
Mon Jan 17 10:38:05 UTC 2022


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:
c126a2d46a HYPNO: removed debug print calls in scene handling


Commit: c126a2d46a1c0240de8f50cf3543574823d99438
    https://github.com/scummvm/scummvm/commit/c126a2d46a1c0240de8f50cf3543574823d99438
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2022-01-17T11:38:03+01:00

Commit Message:
HYPNO: removed debug print calls in scene handling

Changed paths:
    engines/hypno/scene.cpp


diff --git a/engines/hypno/scene.cpp b/engines/hypno/scene.cpp
index 98476f9b256..7f74b199bee 100644
--- a/engines/hypno/scene.cpp
+++ b/engines/hypno/scene.cpp
@@ -440,7 +440,7 @@ void HypnoEngine::runScene(Scene *scene) {
 				debugC(1, kHypnoDebugScene, "removing %d from %d size", *it, _videosPlaying.size());
 				_videosPlaying.remove_at(*it);
 			}
-			debug("Something to play: %d", _videosPlaying.size());
+			debugC(1, kHypnoDebugScene, "Something to play: %d", _videosPlaying.size());
 			// Nothing else to play
 			if (_videosPlaying.empty() && _nextSequentialVideoToPlay.empty() && !checkSceneCompleted()) {
 				if (!_conversation.empty())
@@ -450,7 +450,7 @@ void HypnoEngine::runScene(Scene *scene) {
 
 		if (checkSceneCompleted() || checkLevelWon()) {
 			if(!checkLevelWon() && stack.size() > 1) {
-				debug("Executing escape instead of ending the scene");
+				debugC(1, kHypnoDebugScene, "Executing escape instead of ending the scene");
 				runEscape();
 				_sceneState["GS_LEVELCOMPLETE"] = 0;
 				continue;




More information about the Scummvm-git-logs mailing list