[Scummvm-git-logs] scummvm master -> 94d61eabf9b4a631286dcf76f41753fc95cc5bd3
sev-
noreply at scummvm.org
Tue Sep 9 21:46:28 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
94d61eabf9 DIRECTOR: Hid RTE hexdumps to debug level 9
Commit: 94d61eabf9b4a631286dcf76f41753fc95cc5bd3
https://github.com/scummvm/scummvm/commit/94d61eabf9b4a631286dcf76f41753fc95cc5bd3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-09-09T23:46:10+02:00
Commit Message:
DIRECTOR: Hid RTE hexdumps to debug level 9
Changed paths:
engines/director/rte.cpp
diff --git a/engines/director/rte.cpp b/engines/director/rte.cpp
index 824b89bac88..21047c914cc 100644
--- a/engines/director/rte.cpp
+++ b/engines/director/rte.cpp
@@ -31,8 +31,8 @@
namespace Director {
RTE0::RTE0(Cast *cast, Common::SeekableReadStreamEndian &stream) : _cast(cast) {
- if (debugChannelSet(5, kDebugLoading)) {
- debugC(5, kDebugLoading, "RTE0:");
+ if (debugChannelSet(9, kDebugLoading)) {
+ debugC(9, kDebugLoading, "RTE0:");
stream.hexdump(stream.size());
}
data.resize(stream.size(), 0);
@@ -41,8 +41,8 @@ RTE0::RTE0(Cast *cast, Common::SeekableReadStreamEndian &stream) : _cast(cast) {
}
RTE1::RTE1(Cast *cast, Common::SeekableReadStreamEndian &stream) : _cast(cast) {
- if (debugChannelSet(5, kDebugLoading)) {
- debugC(5, kDebugLoading, "RTE1:");
+ if (debugChannelSet(9, kDebugLoading)) {
+ debugC(9, kDebugLoading, "RTE1:");
stream.hexdump(stream.size());
}
data.resize(stream.size(), 0);
@@ -51,8 +51,8 @@ RTE1::RTE1(Cast *cast, Common::SeekableReadStreamEndian &stream) : _cast(cast) {
}
RTE2::RTE2(Cast *cast, Common::SeekableReadStreamEndian &stream) : _cast(cast) {
- if (debugChannelSet(5, kDebugLoading)) {
- debugC(5, kDebugLoading, "RTE2:");
+ if (debugChannelSet(9, kDebugLoading)) {
+ debugC(9, kDebugLoading, "RTE2:");
stream.hexdump(stream.size());
}
_width = 0;
More information about the Scummvm-git-logs
mailing list