[Scummvm-git-logs] scummvm master -> 364f9434db0daed8a68ed88a1624c809e91e1d17
Strangerke
noreply at scummvm.org
Sat Jul 12 14:19:41 UTC 2025
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:
364f9434db M4: RIDDLE: Fix for #16091 - Missing groan during torture
Commit: 364f9434db0daed8a68ed88a1624c809e91e1d17
https://github.com/scummvm/scummvm/commit/364f9434db0daed8a68ed88a1624c809e91e1d17
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-07-12T15:19:10+01:00
Commit Message:
M4: RIDDLE: Fix for #16091 - Missing groan during torture
Changed paths:
engines/m4/riddle/rooms/section6/room604.cpp
diff --git a/engines/m4/riddle/rooms/section6/room604.cpp b/engines/m4/riddle/rooms/section6/room604.cpp
index cd10212c7ea..f6e8ca90c15 100644
--- a/engines/m4/riddle/rooms/section6/room604.cpp
+++ b/engines/m4/riddle/rooms/section6/room604.cpp
@@ -1146,7 +1146,7 @@ void Room604::daemon1() {
if (_suppressChatter)
return;
- static const char *DIGI[3] = { "610_s03a", "610_s03b", "610_s03" };
+ static const char *DIGI[3] = { "610_s03", "610_s03a", "610_s03b" };
switch (_G(kernel).trigger) {
case 126:
@@ -1158,7 +1158,7 @@ void Room604::daemon1() {
if (++_val1 >= 8)
_val1 = 1;
- digi_play(Common::String::format("610k%.2d", _val1 + 6).c_str(), 3, 130, 136);
+ digi_play(Common::String::format("610k%.2d", _val1 + 6).c_str(), 3, 130, (_val1 == 6) ? 137 : 136);
break;
case 136:
More information about the Scummvm-git-logs
mailing list