[Scummvm-git-logs] scummvm master -> 23dae0af26980261d096cb9e6cd17e14c33ed9c6

Strangerke noreply at scummvm.org
Sun Feb 1 21:16:31 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:
23dae0af26 M4: RIDDLE: Fix bugs #16089 #16088 #15975 - Fix palette issue impacting more or less obviously all the rooms


Commit: 23dae0af26980261d096cb9e6cd17e14c33ed9c6
    https://github.com/scummvm/scummvm/commit/23dae0af26980261d096cb9e6cd17e14c33ed9c6
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-02-01T22:15:48+01:00

Commit Message:
M4: RIDDLE: Fix bugs #16089 #16088 #15975 - Fix palette issue impacting more or less obviously all the rooms

Changed paths:
    engines/m4/riddle/walker.cpp


diff --git a/engines/m4/riddle/walker.cpp b/engines/m4/riddle/walker.cpp
index ab25ae2f940..d5340641de5 100644
--- a/engines/m4/riddle/walker.cpp
+++ b/engines/m4/riddle/walker.cpp
@@ -101,10 +101,10 @@ void Walker::player_walker_callback(frac16 myMessage, machine *sender) {
 bool Walker::walk_load_walker_and_shadow_series() {
 	switch (_G(player).walker_type) {
 	case 0:
-		return ws_walk_load_walker_series(RIPLEY_SERIES_DIRS, RIPLEY_SERIES, true) &&
+		return ws_walk_load_walker_series(RIPLEY_SERIES_DIRS, RIPLEY_SERIES, false) &&
 			ws_walk_load_shadow_series(RIPLEY_SHADOWS_DIRS, RIPLEY_SHADOWS);
 	case 1:
-		return ws_walk_load_walker_series(SAFARI_SERIES_DIRS, SAFARI_SERIES, true) &&
+		return ws_walk_load_walker_series(SAFARI_SERIES_DIRS, SAFARI_SERIES, false) &&
 			ws_walk_load_shadow_series(SAFARI_SHADOWS_DIRS, SAFARI_SHADOWS);
 	default:
 		return false;




More information about the Scummvm-git-logs mailing list