[Scummvm-git-logs] scummvm master -> f6d57114501cc7859c32fda5718bdeda70574af6

bluegr noreply at scummvm.org
Thu Jul 23 13:14:22 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:
f6d5711450 CHEWY: Add missing animation for Chewy in room 11 (Bork-Bork dialog)


Commit: f6d57114501cc7859c32fda5718bdeda70574af6
    https://github.com/scummvm/scummvm/commit/f6d57114501cc7859c32fda5718bdeda70574af6
Author: Max H. Gerlach (git at maxgerlach.de)
Date: 2026-07-23T16:14:18+03:00

Commit Message:
CHEWY: Add missing animation for Chewy in room 11 (Bork-Bork dialog)

Assisted-by: Claude:claude-opus-4.8

Changed paths:
    engines/chewy/t_event.cpp


diff --git a/engines/chewy/t_event.cpp b/engines/chewy/t_event.cpp
index 7ffeb3a6cf1..3fb8b8e2de9 100644
--- a/engines/chewy/t_event.cpp
+++ b/engines/chewy/t_event.cpp
@@ -1217,7 +1217,8 @@ void endDialogCloseup(int16 diaNr, int16 blkNr, int16 strEndNr) {
 		_G(flags).AutoAniPlay = false;
 		break;
 
-	case 5:
+	case 5:  // R11_BORK_DIA
+		aadWait(-1);
 		autoMove(6, P_CHEWY);
 		break;
 
@@ -1388,7 +1389,13 @@ void atdsStringStart(int16 diaNr, int16 strNr, int16 personNr, int16 mode) {
 
 	case R11_BORK_DIA:
 		oldFormat = true;
-		if (personNr == 1) {
+		if (personNr == P_CHEWY) {
+			if (mode == AAD_STR_START) {
+				start_spz(CH_BORK_TALK, 255, ANI_FRONT, P_CHEWY);
+			} else {
+				stop_spz();
+			}
+		} else if (personNr == 1) {
 			if (mode == AAD_STR_START) {
 				_G(talk_start_ani) = 9;
 				_G(talk_hide_static) = 8;




More information about the Scummvm-git-logs mailing list