diff options
author | Max Horn | 2003-05-14 14:00:29 +0000 |
---|---|---|
committer | Max Horn | 2003-05-14 14:00:29 +0000 |
commit | a4915a330468e35baadfcea2e2f6c27b09deb34b (patch) | |
tree | 89a700a3f21c6be72a6fb2c5dec07bc1dda9aa56 /scumm | |
parent | d80f9e34e0ca1bdfb083443766a562b14ff50631 (diff) | |
download | scummvm-rg350-a4915a330468e35baadfcea2e2f6c27b09deb34b.tar.gz scummvm-rg350-a4915a330468e35baadfcea2e2f6c27b09deb34b.tar.bz2 scummvm-rg350-a4915a330468e35baadfcea2e2f6c27b09deb34b.zip |
default text color light blue instead of pink
svn-id: r7506
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 6ecbc417ef..8eed015a5d 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -405,7 +405,7 @@ void Scumm_v2::decodeParseString() { _string[textSlot].right = 320; _string[textSlot].center = false; _string[textSlot].overhead = false; - _string[textSlot].color = 13; // HACK, make it pink, just for fun 8-) + _string[textSlot].color = 9; // light blue _messagePtr = buffer; switch (textSlot) { |