aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/actor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 3341186f41..7eb0f80bef 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -1121,8 +1121,8 @@ void ScummEngine::actorTalk() {
_messagePtr = addMessageToStack(_messagePtr);
assert((int)(_msgPtrToAdd - _charsetBuffer) < (int)(sizeof(_charsetBuffer)));
- // FIXMW: Workaround for bug #770049
- if (_gameId == GID_LOOM) {
+ // FIXME: Workaround for bugs #770039 and #770049
+ if (_gameId == GID_LOOM || _gameId == GID_LOOM256) {
if (!*_charsetBuffer)
return;
}