[Scummvm-git-logs] scummvm master -> 51dd801f2cdd2d7d5044c2038305b0d98206bfa9

sev- noreply at scummvm.org
Thu Apr 23 17:43:34 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:
51dd801f2c MADS: PHANTOM: Fix warning


Commit: 51dd801f2cdd2d7d5044c2038305b0d98206bfa9
    https://github.com/scummvm/scummvm/commit/51dd801f2cdd2d7d5044c2038305b0d98206bfa9
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-04-23T19:43:09+02:00

Commit Message:
MADS: PHANTOM: Fix warning

Changed paths:
    engines/mads/madsv2/core/echo.h


diff --git a/engines/mads/madsv2/core/echo.h b/engines/mads/madsv2/core/echo.h
index 243723c1786..ea385e883c5 100644
--- a/engines/mads/madsv2/core/echo.h
+++ b/engines/mads/madsv2/core/echo.h
@@ -31,7 +31,7 @@ namespace MADSV2 {
 inline void echo(const char *item, bool carriage_return) {
 	auto &dbg = *g_engine->getDebugger();
 
-	dbg.debugPrintf(item);
+	dbg.debugPrintf("%s",item);
 	if (carriage_return)
 		dbg.debugPrintf("\n");
 }




More information about the Scummvm-git-logs mailing list