[Scummvm-git-logs] scummvm master -> 32f6fe3d7f5b1d077aa56bd1ab7352399fc80ad0
Strangerke
noreply at scummvm.org
Tue Jul 1 21:55:49 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:
32f6fe3d7f M4: RIDDLE: Fix for bug #16071 in room 917 and 918 - Fix ending sequence
Commit: 32f6fe3d7f5b1d077aa56bd1ab7352399fc80ad0
https://github.com/scummvm/scummvm/commit/32f6fe3d7f5b1d077aa56bd1ab7352399fc80ad0
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-07-01T22:55:42+01:00
Commit Message:
M4: RIDDLE: Fix for bug #16071 in room 917 and 918 - Fix ending sequence
Changed paths:
engines/m4/riddle/rooms/section9/room917.cpp
engines/m4/riddle/rooms/section9/room918.cpp
diff --git a/engines/m4/riddle/rooms/section9/room917.cpp b/engines/m4/riddle/rooms/section9/room917.cpp
index 7ada34de303..bbf7d1cc54a 100644
--- a/engines/m4/riddle/rooms/section9/room917.cpp
+++ b/engines/m4/riddle/rooms/section9/room917.cpp
@@ -36,7 +36,7 @@ void Room917::preload() {
void Room917::init() {
player_set_commands_allowed(false);
adv_kill_digi_between_rooms(false);
- if (_G(flags)[V291]) {
+ if (_G(flags)[V291] != 1) {
digi_preload("950_s47", 950);
digi_preload("907r02", 950);
_roomStates_tt = series_stream("917zep01", 12, 256, -1);
diff --git a/engines/m4/riddle/rooms/section9/room918.cpp b/engines/m4/riddle/rooms/section9/room918.cpp
index a5156a561a5..fb8ab79e52e 100644
--- a/engines/m4/riddle/rooms/section9/room918.cpp
+++ b/engines/m4/riddle/rooms/section9/room918.cpp
@@ -201,7 +201,7 @@ void Room918::daemon() {
break;
case 320:
- disable_player_commands_and_fade_init(true);
+ disable_player_commands_and_fade_init(-1);
break;
case 325:
More information about the Scummvm-git-logs
mailing list