[Scummvm-git-logs] scummvm master -> 85c5973d8ff374086cc6daa54f6cad39e198b7f8
bluegr
noreply at scummvm.org
Sat Jul 11 22:59:09 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:
85c5973d8f CHEWY: Fix non-responsive states in room 07
Commit: 85c5973d8ff374086cc6daa54f6cad39e198b7f8
https://github.com/scummvm/scummvm/commit/85c5973d8ff374086cc6daa54f6cad39e198b7f8
Author: Max H. Gerlach (git at maxgerlach.de)
Date: 2026-07-12T01:59:05+03:00
Commit Message:
CHEWY: Fix non-responsive states in room 07
Set continueWhenSpeechEnds for two start_aad()s after hitting the bell
Changed paths:
engines/chewy/rooms/room07.cpp
diff --git a/engines/chewy/rooms/room07.cpp b/engines/chewy/rooms/room07.cpp
index 95346e7762b..c1c528fea98 100644
--- a/engines/chewy/rooms/room07.cpp
+++ b/engines/chewy/rooms/room07.cpp
@@ -80,7 +80,7 @@ void Room7::bell() {
if ((!_G(gameState).R7BellCount) ||
(_G(gameState).R7BellCount >= 2 && _G(gameState).R7RopeLeft && !_G(gameState).R7RopeOk)) {
_G(gameState)._personHide[P_CHEWY] = true;
- start_aad(5, 0);
+ start_aad(5, 0, true);
startAniBlock(3, ABLOCK25);
_G(det)->showStaticSpr(7);
@@ -127,7 +127,7 @@ void Room7::bell() {
} else if (!_G(gameState).R7RopeOk) {
_G(gameState)._personHide[P_CHEWY] = true;
- start_aad(7, 0);
+ start_aad(7, 0, true);
startAniBlock(3, ABLOCK25);
_G(det)->showStaticSpr(7);
_G(det)->load_taf_seq(192, 74, nullptr);
More information about the Scummvm-git-logs
mailing list