aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorThierry Crozat2016-04-11 01:15:41 +0100
committerThierry Crozat2016-04-11 01:36:59 +0100
commit5716b288ac8388aa971486fa7ff5539b2f4219f8 (patch)
treee820cbc27bd4d5dc2edd9526fe7ce256336f9781 /engines
parent1c0362d22f2d16fa87ff4789001e6a4f549eb3ec (diff)
downloadscummvm-rg350-5716b288ac8388aa971486fa7ff5539b2f4219f8.tar.gz
scummvm-rg350-5716b288ac8388aa971486fa7ff5539b2f4219f8.tar.bz2
scummvm-rg350-5716b288ac8388aa971486fa7ff5539b2f4219f8.zip
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.
Diffstat (limited to 'engines')
-rw-r--r--engines/drascula/talk.cpp2
1 files changed, 1 insertions, 1 deletions
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);