Skip to content

Commit

Permalink
DRASCULA: Fix color for Drascula at the end of chapter 5
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
criezy committed Apr 11, 2016
1 parent 57a0b08 commit 98ca5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/drascula/talk.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 98ca5d1

Please sign in to comment.