[Scummvm-git-logs] scummvm master -> 68d004bcd012784a44d956a5bd6d04a7d5a5fec8
Strangerke
noreply at scummvm.org
Thu Jul 3 04:47:36 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:
68d004bcd0 M4: RIDDLE: Fix for bug #16076 in room 996: Forward button missing (until late in the game) on page 2
Commit: 68d004bcd012784a44d956a5bd6d04a7d5a5fec8
https://github.com/scummvm/scummvm/commit/68d004bcd012784a44d956a5bd6d04a7d5a5fec8
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-07-03T05:47:30+01:00
Commit Message:
M4: RIDDLE: Fix for bug #16076 in room 996: Forward button missing (until late in the game) on page 2
Changed paths:
engines/m4/riddle/rooms/section9/room996.cpp
diff --git a/engines/m4/riddle/rooms/section9/room996.cpp b/engines/m4/riddle/rooms/section9/room996.cpp
index 9adb5184863..6ea71f0a377 100644
--- a/engines/m4/riddle/rooms/section9/room996.cpp
+++ b/engines/m4/riddle/rooms/section9/room996.cpp
@@ -214,7 +214,7 @@ void Room996::parser() {
break;
case 2:
if (_G(kernel).trigger == -1) {
- if (_flagArray[_moveValue] != 0 || _G(flags)[V047] || _G(flags)[V196] || _G(flags)[V201] || _G(flags)[V207] || _G(flags)[V208] || _G(flags)[V209])
+ if (_flagArray[_moveValue + 1] != 0 || _G(flags)[V047] || _G(flags)[V196] || _G(flags)[V201] || _G(flags)[V207] || _G(flags)[V208] || _G(flags)[V209])
hotspot_set_active(_G(currentSceneDef).hotspots, "forward", true);
else
hotspot_set_active(_G(currentSceneDef).hotspots, "forward", false);
More information about the Scummvm-git-logs
mailing list