[Scummvm-git-logs] scummvm master -> 3b05a52588fc92885d7cae0c96be7eb516d27e5c
orgads
orgads at gmail.com
Wed Jun 2 18:59:54 UTC 2021
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:
3b05a52588 SCUMM: Workaround missing subtitle in The Dig (#3014)
Commit: 3b05a52588fc92885d7cae0c96be7eb516d27e5c
https://github.com/scummvm/scummvm/commit/3b05a52588fc92885d7cae0c96be7eb516d27e5c
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-06-02T21:59:50+03:00
Commit Message:
SCUMM: Workaround missing subtitle in The Dig (#3014)
Fixes #4410
Changed paths:
engines/scumm/actor.cpp
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp
index 21abde0e7e..b7f6778dd8 100644
--- a/engines/scumm/actor.cpp
+++ b/engines/scumm/actor.cpp
@@ -2774,8 +2774,11 @@ void ScummEngine_v7::actorTalk(const byte *msg) {
playSpeech((byte *)_lastStringTag);
if (_game.id == GID_DIG || _game.id == GID_CMI) {
- if (VAR(VAR_HAVE_MSG))
+ if (VAR(VAR_HAVE_MSG)) {
+ if (_game.id == GID_DIG && _roomResource == 58 && msg[0] == ' ' && !msg[1])
+ return;
stopTalk();
+ }
} else {
if (!_keepText)
stopTalk();
More information about the Scummvm-git-logs
mailing list