From d211d671f82107d30934866ad83f637c190bcc57 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 17 Jan 2004 10:37:34 +0000 Subject: Small difference in HE games, fixes radio still moving after speech ends. svn-id: r12450 --- scumm/actor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/actor.cpp b/scumm/actor.cpp index e4541c43fb..cac91c4c86 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1211,8 +1211,11 @@ void ScummEngine::stopTalk() { a->startAnimActor(a->talkStopFrame); _useTalkAnims = false; } - talkingActor(0xFF); + if (!(_features & GF_NEW_COSTUMES)) + talkingActor(0xFF); } + if (_features & GF_NEW_COSTUMES) + talkingActor(0); _keepText = false; _charset->restoreCharsetBg(); } -- cgit v1.2.3