[Scummvm-git-logs] scummvm master -> 47d85713769ea954a1a3edd435047dba1eca0f7b
Strangerke
noreply at scummvm.org
Thu Feb 5 16:48:06 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:
47d8571376 M4: RIDDLE: Fix unreported byg in room 408 - Ripley was growing a 3rd leg while talking to Wolf
Commit: 47d85713769ea954a1a3edd435047dba1eca0f7b
https://github.com/scummvm/scummvm/commit/47d85713769ea954a1a3edd435047dba1eca0f7b
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-02-05T17:47:48+01:00
Commit Message:
M4: RIDDLE: Fix unreported byg in room 408 - Ripley was growing a 3rd leg while talking to Wolf
Changed paths:
engines/m4/riddle/rooms/section4/room408.cpp
diff --git a/engines/m4/riddle/rooms/section4/room408.cpp b/engines/m4/riddle/rooms/section4/room408.cpp
index 63b945243fb..db8a3392155 100644
--- a/engines/m4/riddle/rooms/section4/room408.cpp
+++ b/engines/m4/riddle/rooms/section4/room408.cpp
@@ -84,6 +84,8 @@ void Room408::init() {
hotspot_set_active("PLANK", true);
}
+ _ripShadowSeries = series_load("SAFARI SHADOW 3");
+
switch (_G(game).previous_room) {
case KERNEL_RESTORING_GAME:
digi_preload("950_s22");
@@ -243,14 +245,17 @@ void Room408::daemon() {
_ripley = TriggerMachineByHash(1, 1, 0, 0, 0, 0,
_G(player_info).x, _G(player_info).y, _G(player_info).scale, 0x100, false,
triggerMachineByHashCallback, "rip talks wolf");
+
_ripleyShadow = TriggerMachineByHash(1, 1, 0, 0, 0, 0,
_G(player_info).x, _G(player_info).y, _G(player_info).scale, 0x100, false,
triggerMachineByHashCallback, "rip talks wolf SHADOW");
sendWSMessage_10000(1, _ripley, _ripHandsBehindBack, 1, 15, 102,
_ripHandsBehindBack, 15, 15, 0);
+
sendWSMessage_10000(1, _ripleyShadow, _ripShadowSeries, 1, 1, -1,
_ripShadowSeries, 1, 1, 0);
+
_ripleyShould = 1101;
_wolfMode = 2000;
_wolfShould = 2100;
More information about the Scummvm-git-logs
mailing list