diff options
author | Max Horn | 2002-08-31 14:27:33 +0000 |
---|---|---|
committer | Max Horn | 2002-08-31 14:27:33 +0000 |
commit | c41b6b53d26d9e7578373d4a1a50de42c4129c4e (patch) | |
tree | c83573236682727e11125afb60a23a2065b1e778 | |
parent | caf9817cb1f65521c317c81600bb6e21b3e7c29e (diff) | |
download | scummvm-rg350-c41b6b53d26d9e7578373d4a1a50de42c4129c4e.tar.gz scummvm-rg350-c41b6b53d26d9e7578373d4a1a50de42c4129c4e.tar.bz2 scummvm-rg350-c41b6b53d26d9e7578373d4a1a50de42c4129c4e.zip |
fix for bug #602354
svn-id: r4882
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index c810acf36e..cea37d85a0 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -2075,7 +2075,7 @@ void Scumm::dissolveEffect(int width, int height) { for (i = 0; i < w * h; i++) { x = offsets[i] % vs->width; y = offsets[i] / vs->width; - _system->copy_rect(vs->screenPtr + vs->xstart + y * vs->width + x, vs->width, x, y, width, height); + _system->copy_rect(vs->screenPtr + vs->xstart + y * vs->width + x, vs->width, x, y + vs->topline, width, height); if (++blits >= blits_before_refresh) { blits = 0; |