[Scummvm-git-logs] scummvm master -> 520fc09865a85c4e125896b4a4f24dd7a50ec1a2

Strangerke noreply at scummvm.org
Sat Apr 5 05:32:04 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:
520fc09865 M4: RIDDLE: Fix persisting wheel displayed in left wheel when removing it in room 705


Commit: 520fc09865a85c4e125896b4a4f24dd7a50ec1a2
    https://github.com/scummvm/scummvm/commit/520fc09865a85c4e125896b4a4f24dd7a50ec1a2
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-04-05T06:31:57+01:00

Commit Message:
M4: RIDDLE: Fix persisting wheel displayed in left wheel when removing it in room 705

Changed paths:
    engines/m4/riddle/rooms/section7/room705.cpp


diff --git a/engines/m4/riddle/rooms/section7/room705.cpp b/engines/m4/riddle/rooms/section7/room705.cpp
index 789bc7620c9..c8b8e5d10ff 100644
--- a/engines/m4/riddle/rooms/section7/room705.cpp
+++ b/engines/m4/riddle/rooms/section7/room705.cpp
@@ -1306,35 +1306,35 @@ void Room705::useWheelOnLeftNiche(int32 trigger, int val1) {
 				inv_move_object("PEACE WHEEL", 705);
 				_G(flags)[V220] = 1;
 				digi_play("950_S40A", 2, 255, -1, 950);
-				_rightWheelMach = series_place_sprite("705 LEFT PEACE WHEEL", 0, 0, 0, 100, 1280);
+				_leftWheelMach = series_place_sprite("705 LEFT PEACE WHEEL", 0, 0, 0, 100, 1280);
 				break;
 
 			case 2:
 				inv_move_object("INSIGHT WHEEL", 705);
 				_G(flags)[V220] = 2;
 				digi_play("950_S40A", 2, 255, -1, 950);
-				_rightWheelMach = series_place_sprite("705 LEFT INSIGHT WHEEL", 0, 0, 0, 100, 1280);
+				_leftWheelMach = series_place_sprite("705 LEFT INSIGHT WHEEL", 0, 0, 0, 100, 1280);
 				break;
 
 			case 3:
 				inv_move_object("SERENITY WHEEL", 705);
 				_G(flags)[V220] = 3;
 				digi_play("950_S40A", 2, 255, -1, 950);
-				_rightWheelMach = series_place_sprite("705 LEFT SERENITY WHEEL", 0, 0, 0, 100, 1280);
+				_leftWheelMach = series_place_sprite("705 LEFT SERENITY WHEEL", 0, 0, 0, 100, 1280);
 				break;
 
 			case 4:
 				inv_move_object("TRUTH WHEEL", 705);
 				_G(flags)[V220] = 4;
 				digi_play("950_S40A", 2, 255, -1, 950);
-				_rightWheelMach = series_place_sprite("705 LEFT TRUTH WHEEL", 0, 0, 0, 100, 1280);
+				_leftWheelMach = series_place_sprite("705 LEFT TRUTH WHEEL", 0, 0, 0, 100, 1280);
 				break;
 
 			case 5:
 				inv_move_object("WISDOM WHEEL", 705);
 				_G(flags)[V220] = 5;
 				digi_play("950_S40A", 2, 255, -1, 950);
-				_rightWheelMach = series_place_sprite("705 LEFT WISDOM WHEEL", 0, 0, 0, 100, 1280);
+				_leftWheelMach = series_place_sprite("705 LEFT WISDOM WHEEL", 0, 0, 0, 100, 1280);
 
 				break;
 




More information about the Scummvm-git-logs mailing list