[Scummvm-git-logs] scummvm master -> 30071ba1f33e2efe7be626745496784e3b673d94
bluegr
noreply at scummvm.org
Sat Sep 12 00:50:16 UTC 2026
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:
30071ba1f3 CHAMBER: Fix format specifier warning in SCR_TRAP
Commit: 30071ba1f33e2efe7be626745496784e3b673d94
https://github.com/scummvm/scummvm/commit/30071ba1f33e2efe7be626745496784e3b673d94
Author: uj404 (39839409+uj404 at users.noreply.github.com)
Date: 2026-09-12T03:50:12+03:00
Commit Message:
CHAMBER: Fix format specifier warning in SCR_TRAP
Changed paths:
engines/chamber/script.cpp
diff --git a/engines/chamber/script.cpp b/engines/chamber/script.cpp
index adfd6eab76f..80ea58a6f27 100644
--- a/engines/chamber/script.cpp
+++ b/engines/chamber/script.cpp
@@ -116,7 +116,7 @@ uint16 CMD_TRAP(void) {
}
uint16 SCR_TRAP(void) {
- warning("SCR TRAP 0x%02X @ 0x%lX", *script_ptr, script_ptr - templ_data);
+ warning("SCR TRAP 0x%02X @ 0x%X", *script_ptr, (uint32)(script_ptr - templ_data));
promptWait();
for (;;) ;
return 0;
More information about the Scummvm-git-logs
mailing list