diff options
author | Travis Howell | 2003-07-14 06:19:06 +0000 |
---|---|---|
committer | Travis Howell | 2003-07-14 06:19:06 +0000 |
commit | 89cc9ede192d33eb7f57d8dccf2c65b367378510 (patch) | |
tree | 35d6cc3bf2809a74c82edc92e17dc0b0e1a660d1 /scumm | |
parent | e6f3eb9aa53ace350d698ba444008b083deffd01 (diff) | |
download | scummvm-rg350-89cc9ede192d33eb7f57d8dccf2c65b367378510.tar.gz scummvm-rg350-89cc9ede192d33eb7f57d8dccf2c65b367378510.tar.bz2 scummvm-rg350-89cc9ede192d33eb7f57d8dccf2c65b367378510.zip |
Ooops, was in reverse.
svn-id: r8998
Diffstat (limited to 'scumm')
-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; |