diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-02-04 17:09:14 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-02-11 10:39:13 +0000 |
commit | d1f3dd343c163d0e1d188b964b7d635692bac7d8 (patch) | |
tree | ab87f03995810cc2038c7c4478c307f87dc72386 /hw/framebuffer.c | |
parent | 57c83dacfe179bf061b8fa79d9553ebabe4d2ff4 (diff) |
Fix memory dirty getting API change fallout
Fix confusion in length calculation in commit
cd7a45c95ecf2404810f3c6becb7cb83c5010ad8.
Reported-by: Jan Kiszka <jan.kiszka@web.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/framebuffer.c')
-rw-r--r-- | hw/framebuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/framebuffer.c b/hw/framebuffer.c index ea122fb266..f4747cd646 100644 --- a/hw/framebuffer.c +++ b/hw/framebuffer.c @@ -87,7 +87,7 @@ void framebuffer_update_display( dest += i * dest_row_pitch; for (; i < rows; i++) { - dirty = memory_region_get_dirty(mem, addr, addr + src_width, + dirty = memory_region_get_dirty(mem, addr, src_width, DIRTY_MEMORY_VGA); if (dirty || invalidate) { fn(opaque, dest, src, cols, dest_col_pitch); |