aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 056d8e9e27..34d15e0e4d 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1663,7 +1663,7 @@ void Gdi::copyVirtScreenBuffers(Common::Rect rect, int dirtybit) {
assert(rw <= _vm->_screenWidth && rw > 0);
assert(rh <= _vm->_screenHeight && rh > 0);
blit(dst, _vm->virtscr[0].pitch, src, _vm->virtscr[0].pitch, rw, rh);
- _vm->markRectAsDirty(kMainVirtScreen, rect);
+ _vm->markRectAsDirty(kMainVirtScreen, rect, dirtybit);
}
/**