[Scummvm-git-logs] scummvm master -> d70dfb7210f9bfc53a70d8f17e3ce74606398356
digitall
noreply at scummvm.org
Tue Jun 13 23:28:48 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:
d70dfb7210 MTROPOLIS: Fix GCC Compiler Warning
Commit: d70dfb7210f9bfc53a70d8f17e3ce74606398356
https://github.com/scummvm/scummvm/commit/d70dfb7210f9bfc53a70d8f17e3ce74606398356
Author: D G Turner (digitall at scummvm.org)
Date: 2023-06-14T00:28:15+01:00
Commit Message:
MTROPOLIS: Fix GCC Compiler Warning
Changed paths:
engines/mtropolis/runtime.cpp
diff --git a/engines/mtropolis/runtime.cpp b/engines/mtropolis/runtime.cpp
index 8d85f74ebc0..1d4acb78890 100644
--- a/engines/mtropolis/runtime.cpp
+++ b/engines/mtropolis/runtime.cpp
@@ -9388,7 +9388,7 @@ void VariableModifier::debugInspect(IDebugInspectionReport *report) const {
Modifier::debugInspect(report);
if (report->declareStatic("storage"))
- report->declareStaticContents(Common::String::format("%p", _storage.get()));
+ report->declareStaticContents(Common::String::format("%p", (void *)_storage.get()));
}
#endif
More information about the Scummvm-git-logs
mailing list