[Scummvm-git-logs] scummvm master -> df949287e36a750b6f62854727aa3288df1aa427
Strangerke
noreply at scummvm.org
Thu Jul 10 07:42:42 UTC 2025
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:
df949287e3 M4: RIDDLE: Fix for bug #16097 in room 807 (Death animation not played) + small cleanup
Commit: df949287e36a750b6f62854727aa3288df1aa427
https://github.com/scummvm/scummvm/commit/df949287e36a750b6f62854727aa3288df1aa427
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-07-10T08:42:34+01:00
Commit Message:
M4: RIDDLE: Fix for bug #16097 in room 807 (Death animation not played) + small cleanup
Changed paths:
engines/m4/riddle/rooms/section8/room807.cpp
diff --git a/engines/m4/riddle/rooms/section8/room807.cpp b/engines/m4/riddle/rooms/section8/room807.cpp
index f786bc13ac7..ec5db6a4558 100644
--- a/engines/m4/riddle/rooms/section8/room807.cpp
+++ b/engines/m4/riddle/rooms/section8/room807.cpp
@@ -796,7 +796,7 @@ void Room807::parser() {
if (player_said("slot")) {
switch (_G(kernel).trigger) {
case -1:
- ws_walk(_G(my_walker), 476, 318, 0, 10, 11, true);
+ ws_walk(_G(my_walker), 476, 318, nullptr, 10, 11, true);
break;
case 10:
@@ -900,7 +900,7 @@ void Room807::parser() {
case 30:
terminateMachine(_807Mc01Mach);
_807Mc01Mach = series_play("807mc01", 0, 16, -1, 5, 0, 100, 0, 0, 22, 41);
- ws_hide_walker(_807Mc01Mach);
+ ws_hide_walker(_G(my_walker));
_G(kernel).trigger_mode = KT_DAEMON;
series_play("807rp03", 4095, 16, 11, 5, 0, 100, 0, 0, 0, -1);
_G(kernel).trigger_mode = KT_PARSE;
More information about the Scummvm-git-logs
mailing list