[Scummvm-git-logs] scummvm master -> ab8eb9a68aaed21387636114561796d977fda383
sev-
noreply at scummvm.org
Tue Mar 14 10:27:57 UTC 2023
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:
ab8eb9a68a DIRECTOR: Fix warning
Commit: ab8eb9a68aaed21387636114561796d977fda383
https://github.com/scummvm/scummvm/commit/ab8eb9a68aaed21387636114561796d977fda383
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-03-14T11:27:43+01:00
Commit Message:
DIRECTOR: Fix warning
Changed paths:
engines/director/resource.cpp
diff --git a/engines/director/resource.cpp b/engines/director/resource.cpp
index c2803f1ac9d..d4cf46a265e 100644
--- a/engines/director/resource.cpp
+++ b/engines/director/resource.cpp
@@ -692,7 +692,7 @@ bool ProjectorArchive::loadArchive(Common::SeekableReadStream *stream) {
size = SWAP_BYTES_32(size);
}
- debugC(1, kDebugLoading, "Entry: %s offset %llX tag %s size %d", arr[i].c_str(), stream->pos() - 8, tag2str(tag), size);
+ debugC(1, kDebugLoading, "Entry: %s offset %lX tag %s size %d", arr[i].c_str(), stream->pos() - 8, tag2str(tag), size);
Entry entry;
More information about the Scummvm-git-logs
mailing list