[Scummvm-cvs-logs] scummvm master -> de5ec741ffbc491ec33100f7b60d1e4928e8f302

Strangerke arnaud.boutonne at gmail.com
Mon Apr 25 00:09:31 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
de5ec741ff HUGO: Add a black background behind the score line. This should fix bug #3291959.


Commit: de5ec741ffbc491ec33100f7b60d1e4928e8f302
    https://github.com/scummvm/scummvm/commit/de5ec741ffbc491ec33100f7b60d1e4928e8f302
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-04-24T15:08:39-07:00

Commit Message:
HUGO: Add a black background behind the score line. This should fix bug #3291959.

Changed paths:
    engines/hugo/display.cpp



diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp
index 333eb59..41e6940 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);
 }






More information about the Scummvm-git-logs mailing list