[Scummvm-git-logs] scummvm master -> 76ce13434b62b1ae03291c52b9b99ed8daf240c4
Strangerke
noreply at scummvm.org
Tue Nov 12 21:52:51 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:
76ce13434b M4: RIDDLE: Room 204: Fix an erroneous fallthrough (thanks Digitall for noticing)
Commit: 76ce13434b62b1ae03291c52b9b99ed8daf240c4
https://github.com/scummvm/scummvm/commit/76ce13434b62b1ae03291c52b9b99ed8daf240c4
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2024-11-12T22:52:36+01:00
Commit Message:
M4: RIDDLE: Room 204: Fix an erroneous fallthrough (thanks Digitall for noticing)
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 c3d0497f9a0..1840430fc06 100644
--- a/engines/m4/riddle/rooms/section2/room204.cpp
+++ b/engines/m4/riddle/rooms/section2/room204.cpp
@@ -1235,6 +1235,7 @@ void Room204::daemon() {
_field124 = 4;
break;
+
default:
break;
}
@@ -1257,6 +1258,8 @@ void Room204::daemon() {
break;
}
+ break;
+
case 3:
switch (_field124) {
case 1:
More information about the Scummvm-git-logs
mailing list