[Scummvm-git-logs] scummvm master -> a9dcb56ea53d56e31e5447270576a48b71eadb82
Strangerke
noreply at scummvm.org
Wed Mar 5 05:34:55 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
a9dcb56ea5 M4: RIDDLE: Fix a bug when look at SHIH CHI tablets, room 204
Commit: a9dcb56ea53d56e31e5447270576a48b71eadb82
https://github.com/scummvm/scummvm/commit/a9dcb56ea53d56e31e5447270576a48b71eadb82
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-03-05T06:34:49+01:00
Commit Message:
M4: RIDDLE: Fix a bug when look at SHIH CHI tablets, room 204
Changed paths:
engines/m4/riddle/rooms/section2/room204.cpp
diff --git a/engines/m4/riddle/rooms/section2/room204.cpp b/engines/m4/riddle/rooms/section2/room204.cpp
index 7f4269a7a09..8b121adb03b 100644
--- a/engines/m4/riddle/rooms/section2/room204.cpp
+++ b/engines/m4/riddle/rooms/section2/room204.cpp
@@ -372,7 +372,7 @@ void Room204::parser() {
if (lookFl && player_said("SHIH CHI TABLETS")) {
player_update_info(_G(my_walker), &_G(player_info));
- if (_G(player_info).x >= 1300) {
+ if (_G(player_info).x < 1300) {
_meiMachineFlag = false;
_fieldE4_walkerDestX = 1245;
moveAndLookFl = true;
More information about the Scummvm-git-logs
mailing list