aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorstrangerke2011-04-25 00:08:39 +0200
committerstrangerke2011-04-25 00:08:39 +0200
commitde5ec741ffbc491ec33100f7b60d1e4928e8f302 (patch)
tree9526021d77b448f50587a4facff7a8fdc06a3b5b /engines
parent3de8b25003ad5aafdcb7ae091383339e6313ce8e (diff)
downloadscummvm-rg350-de5ec741ffbc491ec33100f7b60d1e4928e8f302.tar.gz
scummvm-rg350-de5ec741ffbc491ec33100f7b60d1e4928e8f302.tar.bz2
scummvm-rg350-de5ec741ffbc491ec33100f7b60d1e4928e8f302.zip
HUGO: Add a black background behind the score line. This should fix bug #3291959.
Diffstat (limited to 'engines')
-rw-r--r--engines/hugo/display.cpp3
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);
}