diff options
Diffstat (limited to 'engines/mortevielle')
-rw-r--r-- | engines/mortevielle/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mortevielle/graphics.cpp b/engines/mortevielle/graphics.cpp index 0bc3b77804..f751bc2422 100644 --- a/engines/mortevielle/graphics.cpp +++ b/engines/mortevielle/graphics.cpp @@ -990,7 +990,7 @@ void ScreenSurface::fillBox(int colour, const Common::Rect &bounds, int patt) { bounds.right, bounds.bottom * 2)); // Fill the area - destSurface.fillRect(Common::Rect(0, 0, destSurface.w, destSurface.h), 0); + destSurface.fillRect(Common::Rect(0, 0, destSurface.w, destSurface.h), colour); // TODO: Figure out what effect patterns of other than '0xff' have if (patt != 0xff) |