[Scummvm-git-logs] scummvm master -> 854fb77d7428a6fa230b11c678690565a6e0321e
Strangerke
noreply at scummvm.org
Thu Apr 24 06:20:58 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:
854fb77d74 M4: RIDDLE: Fix bad initialization of chariot in room 806
Commit: 854fb77d7428a6fa230b11c678690565a6e0321e
https://github.com/scummvm/scummvm/commit/854fb77d7428a6fa230b11c678690565a6e0321e
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-04-24T07:19:50+01:00
Commit Message:
M4: RIDDLE: Fix bad initialization of chariot in room 806
Changed paths:
engines/m4/riddle/rooms/section8/room806.cpp
diff --git a/engines/m4/riddle/rooms/section8/room806.cpp b/engines/m4/riddle/rooms/section8/room806.cpp
index 03e545c7a44..65b053512c6 100644
--- a/engines/m4/riddle/rooms/section8/room806.cpp
+++ b/engines/m4/riddle/rooms/section8/room806.cpp
@@ -67,7 +67,7 @@ void Room806::init() {
hotspot_set_active(_G(currentSceneDef).hotspots, "CRANK", false);
}
- if (_G(flags)[V270] == 806) {
+ if (_G(flags)[V270] != 806) {
hotspot_set_active(_G(currentSceneDef).hotspots, "CHARIOT", false);
} else {
digi_stop(2);
More information about the Scummvm-git-logs
mailing list