[Scummvm-git-logs] scummvm master -> 9a1e9bc61872752aa286647482e5fde026bfbd69

Strangerke noreply at scummvm.org
Fri Jan 30 08:14:24 UTC 2026


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:
9a1e9bc618 M4: RIDDLE: Fix bug #16493 : Bouncing screen when walking to an object


Commit: 9a1e9bc61872752aa286647482e5fde026bfbd69
    https://github.com/scummvm/scummvm/commit/9a1e9bc61872752aa286647482e5fde026bfbd69
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-01-30T09:14:16+01:00

Commit Message:
M4: RIDDLE: Fix bug #16493 : Bouncing screen when walking to an object

Changed paths:
    engines/m4/riddle/rooms/section8/room809.cpp


diff --git a/engines/m4/riddle/rooms/section8/room809.cpp b/engines/m4/riddle/rooms/section8/room809.cpp
index 381f0889c24..b7cb78aa402 100644
--- a/engines/m4/riddle/rooms/section8/room809.cpp
+++ b/engines/m4/riddle/rooms/section8/room809.cpp
@@ -210,7 +210,7 @@ void Room809::parser() {
 
 	case 1: {
 		player_update_info();
-		if (_G(player_info).x < 1340 && -_G(game_buff_ptr)->x1 < 1259) {
+		if (_G(player_info).x >= 1340 && -_G(game_buff_ptr)->x1 < 1259) {
 			g_engine->camera_shift_xy(1259, 0);
 		}
 




More information about the Scummvm-git-logs mailing list