diff options
-rw-r--r-- | scumm/script_v2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index ad948e9fc5..9592a97274 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -983,9 +983,9 @@ void Scumm_v2::o2_drawSentence() { _string[2].ypos = virtscr[2].topline; _string[2].xpos = 0; if(_version == 1) - _string[2].color = 13; - else _string[2].color = 4; + else + _string[2].color = 13; sentence[80] = 0; _messagePtr = (byte*)sentence; |