From 8c65d4d4a94f5a0330b1c86f6378ffada20dd1be Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 7 Jul 2009 18:17:30 +0000 Subject: - Rename FontSJIS::enableShadow to enableOutline. - Initialize outline to false by default in FontTowns. svn-id: r42231 --- engines/kyra/screen.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/kyra') diff --git a/engines/kyra/screen.cpp b/engines/kyra/screen.cpp index 079529f1ef..f0e2aec987 100644 --- a/engines/kyra/screen.cpp +++ b/engines/kyra/screen.cpp @@ -115,7 +115,7 @@ bool Screen::init() { }*/ } - _sjisFont->enableShadow(!_use16ColorMode); + _sjisFont->enableOutline(!_use16ColorMode); } } @@ -3021,7 +3021,7 @@ void Screen::drawCharSJIS(uint16 c, int x, int y) { color2 = _textColorsMap[0]; if (color2 == _sjisInvisibleColor) - _sjisFont->enableShadow(false); + _sjisFont->enableOutline(false); } if (_curPage == 0 || _curPage == 1) @@ -3040,7 +3040,7 @@ void Screen::drawCharSJIS(uint16 c, int x, int y) { _sjisFont->drawChar(destPage, c, 640, 1, color1, color2); - _sjisFont->enableShadow(!_use16ColorMode); + _sjisFont->enableOutline(!_use16ColorMode); } #pragma mark - -- cgit v1.2.3