[Scummvm-git-logs] scummvm master -> 25a4820f17a1884752956417ecabae8f7bb1fd1b

Strangerke noreply at scummvm.org
Thu Dec 5 09:17:27 UTC 2024


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:
25a4820f17 M4: RIDDLE: room 705: Rename takeFl in Dameon


Commit: 25a4820f17a1884752956417ecabae8f7bb1fd1b
    https://github.com/scummvm/scummvm/commit/25a4820f17a1884752956417ecabae8f7bb1fd1b
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2024-12-05T10:17:14+01:00

Commit Message:
M4: RIDDLE: room 705: Rename takeFl in Dameon

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 63e26e2fe4f..27b208b4df2 100644
--- a/engines/m4/riddle/rooms/section7/room705.cpp
+++ b/engines/m4/riddle/rooms/section7/room705.cpp
@@ -141,7 +141,7 @@ void Room705::parser() {
 }
 
 void Room705::daemon() {
-	bool esi = player_said("take");
+	bool takeFl = player_said("take");
 
 	switch (_G(kernel).trigger) {
 	case 70:
@@ -247,7 +247,7 @@ void Room705::daemon() {
 		break;
 
 	case 83:
-		if (esi && _G(player).click_y <= 374) {
+		if (takeFl && _G(player).click_y <= 374) {
 			switch (imath_ranged_rand(1, 3)) {
 			case 1:
 				digi_play("com077", 1, 255, 84, -1);




More information about the Scummvm-git-logs mailing list