diff options
-rw-r--r-- | engines/hugo/display.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp index 333eb59707..41e69401d0 100644 --- a/engines/hugo/display.cpp +++ b/engines/hugo/display.cpp @@ -507,6 +507,9 @@ void Screen::drawStatusText() { sdx = stringLength(_vm->_scoreLine); posY = 0; + + //Display a black behind the score line + _vm->_screen->drawRectangle(true, 0, 0, kXPix, 8, _TBLACK); writeStr(posX, posY, _vm->_scoreLine, _TCYAN); displayList(kDisplayAdd, posX, posY, sdx, sdy); } |