[Scummvm-git-logs] scummvm master -> 0a0e8156e5f89fd5ee519e2ff85154e4ac575bf8
elasota
noreply at scummvm.org
Thu Sep 5 22:33:41 UTC 2024
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:
0a0e8156e5 MTROPOLIS: Fix debug message spam
Commit: 0a0e8156e5f89fd5ee519e2ff85154e4ac575bf8
https://github.com/scummvm/scummvm/commit/0a0e8156e5f89fd5ee519e2ff85154e4ac575bf8
Author: elasota (1137273+elasota at users.noreply.github.com)
Date: 2024-09-05T18:33:04-04:00
Commit Message:
MTROPOLIS: Fix debug message spam
Changed paths:
engines/mtropolis/runtime.cpp
diff --git a/engines/mtropolis/runtime.cpp b/engines/mtropolis/runtime.cpp
index 52003cf28ca..22aefc4b538 100644
--- a/engines/mtropolis/runtime.cpp
+++ b/engines/mtropolis/runtime.cpp
@@ -6225,7 +6225,6 @@ CORO_BEGIN_DEFINITION(Runtime::SendMessageToStructuralCoroutine)
// Send to children if cascade
CORO_IF(params->dispatch->isCascade())
CORO_FOR((locals->childrenArray = ¶ms->structural->getChildren()), (locals->childIndex < locals->childrenArray->size()), (locals->childIndex++))
- debug("traversing into child %u: %s", locals->childIndex, (*locals->childrenArray)[locals->childIndex]->debugGetName().c_str());
CORO_CALL(Runtime::SendMessageToStructuralCoroutine, params->runtime, params->isTerminatedPtr, (*locals->childrenArray)[locals->childIndex].get(), params->dispatch);
CORO_IF (*params->isTerminatedPtr)
More information about the Scummvm-git-logs
mailing list