[Scummvm-git-logs] scummvm master -> b2da2358b45b18bdb02766091ff22668378a1e69
Strangerke
noreply at scummvm.org
Sun Aug 3 05:31:52 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:
b2da2358b4 M4: Riddle: Fix beggar behavior in room 203 (fix for 15972)
Commit: b2da2358b45b18bdb02766091ff22668378a1e69
https://github.com/scummvm/scummvm/commit/b2da2358b45b18bdb02766091ff22668378a1e69
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-08-03T07:31:34+02:00
Commit Message:
M4: Riddle: Fix beggar behavior in room 203 (fix for 15972)
Changed paths:
engines/m4/riddle/rooms/section2/room203.cpp
diff --git a/engines/m4/riddle/rooms/section2/room203.cpp b/engines/m4/riddle/rooms/section2/room203.cpp
index 20373f2a9a7..9ebbdfcf670 100644
--- a/engines/m4/riddle/rooms/section2/room203.cpp
+++ b/engines/m4/riddle/rooms/section2/room203.cpp
@@ -911,7 +911,7 @@ void Room203::daemon() {
} else {
player_update_info();
- if (_G(player_info).x >= 450 && _G(player_info).x <= 8000) {
+ if (_G(player_info).x >= 450 && _G(player_info).x <= 800) {
kernel_trigger_dispatchx(kernel_trigger_create(121));
} else {
player_set_commands_allowed(false);
@@ -962,7 +962,7 @@ void Room203::daemon() {
} else {
player_update_info();
- if (_G(player_info).x >= 450 && _G(player_info).x <= 1040) {
+ if (_G(player_info).x >= 800 && _G(player_info).x <= 1040) {
kernel_trigger_dispatchx(kernel_trigger_create(121));
} else {
player_set_commands_allowed(false);
More information about the Scummvm-git-logs
mailing list