aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2011-06-03 22:47:27 +0200
committerStrangerke2011-06-03 22:47:27 +0200
commit54a3e3aa5171a5f7182b3f1f87133f7224656f41 (patch)
tree2c2e41973e7e78e8dbde347d8761ac279b9caec5 /engines
parent4a8b501a225c170868555d39d6939015f79493f9 (diff)
downloadscummvm-rg350-54a3e3aa5171a5f7182b3f1f87133f7224656f41.tar.gz
scummvm-rg350-54a3e3aa5171a5f7182b3f1f87133f7224656f41.tar.bz2
scummvm-rg350-54a3e3aa5171a5f7182b3f1f87133f7224656f41.zip
TSAGE: Fix font color in GfxMessage(), in later versions of the engine (like the CD version of ringworld)
Diffstat (limited to 'engines')
-rw-r--r--engines/tsage/graphics.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/tsage/graphics.cpp b/engines/tsage/graphics.cpp
index f69d243f4d..d3c0d9b5e2 100644
--- a/engines/tsage/graphics.cpp
+++ b/engines/tsage/graphics.cpp
@@ -786,7 +786,10 @@ void GfxMessage::draw() {
// Set the font and color
gfxManager.setFillFlag(false);
gfxManager._font.setFontNumber(_fontNumber);
- gfxManager._font._colors.foreground = this->_colors.foreground;
+
+ gfxManager._font._colors.foreground = this->_unkColor1;
+ gfxManager._font._colors2.background = this->_unkColor2;
+ gfxManager._font._colors2.foreground = this->_unkColor3;
// Display the text
gfxManager._font.writeLines(_message.c_str(), _bounds, _textAlign);