diff options
Diffstat (limited to 'gui/about.cpp')
-rw-r--r-- | gui/about.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/about.cpp b/gui/about.cpp index 0d70f3dd42..869e0f82ba 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -242,7 +242,9 @@ void AboutDialog::drawDialog(DrawLayer layerToDraw) { str++; if (*str) - g_gui.theme()->drawText(Common::Rect(_x + _xOff, y, _x + _w - _xOff, y + g_gui.theme()->getFontHeight()), str, state, align, ThemeEngine::kTextInversionNone, 0, false, ThemeEngine::kFontStyleBold, ThemeEngine::kFontColorNormal, true, _textDrawableArea); + g_gui.theme()->drawText(Common::Rect(_x + _xOff, y, _x + _w - _xOff, y + g_gui.theme()->getFontHeight()), + str, state, align, ThemeEngine::kTextInversionNone, 0, false, + ThemeEngine::kFontStyleBold, ThemeEngine::kFontColorNormal, true, _textDrawableArea); y += _lineHeight; } } |