aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);