From 5716b288ac8388aa971486fa7ff5539b2f4219f8 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Mon, 11 Apr 2016 01:15:41 +0100 Subject: DRASCULA: Fix color for Drascula at the end of chapter 5 I checked the original and the code in ScummVM and there is no call to talk_solo in chapter 4, while we indeed need to use the red color for all calls to talk_solo in chapter 5. --- engines/drascula/talk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/drascula') diff --git a/engines/drascula/talk.cpp b/engines/drascula/talk.cpp index e9fec868f8..cc329b206b 100644 --- a/engines/drascula/talk.cpp +++ b/engines/drascula/talk.cpp @@ -232,7 +232,7 @@ void DrasculaEngine::talk_solo(const char *said, const char *filename) { if (currentChapter == 1) color_abc(color_solo); - else if (currentChapter == 4) + else if (currentChapter == 5) color_abc(kColorRed); talkInit(filename); -- cgit v1.2.3