From 54a3e3aa5171a5f7182b3f1f87133f7224656f41 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 3 Jun 2011 22:47:27 +0200 Subject: TSAGE: Fix font color in GfxMessage(), in later versions of the engine (like the CD version of ringworld) --- engines/tsage/graphics.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3