aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-06-14 07:23:59 +0000
committerTorbjörn Andersson2004-06-14 07:23:59 +0000
commit3da9e2d21ea4eaf143b59d058e4840222e2577c4 (patch)
tree98a77331b6ef39c2ab1a90179e350f7656661f92 /scumm/gfx.cpp
parenta15f20535f5be44c0f8563ccc43403409abfad33 (diff)
downloadscummvm-rg350-3da9e2d21ea4eaf143b59d058e4840222e2577c4.tar.gz
scummvm-rg350-3da9e2d21ea4eaf143b59d058e4840222e2577c4.tar.bz2
scummvm-rg350-3da9e2d21ea4eaf143b59d058e4840222e2577c4.zip
The "Fatty Bear's Birthday Surprise" demo didn't erase subtitles properly
during the black-and-white "Alfred Hitchcock Presents" style part of the intro. I think this is the correct fix for it, but I could be wrong... svn-id: r13958
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index f02bdfc9aa..1794c45163 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -668,7 +668,7 @@ void CharsetRenderer::restoreCharsetBg() {
// clean out the charset mask
const int mask_width = _vm->gdi._numStrips;
- byte *mask = _vm->getMaskBuffer(0, vs->topline, 0);
+ byte *mask = _vm->getMaskBuffer(0, 0, 0);
assert(vs->width == 8 * _vm->gdi._numStrips);
int height = vs->height;