From b51d7b2e10564aedc83513d3961a69f22509eaa9 Mon Sep 17 00:00:00 2001 From: BALATON Zoltan Date: Sat, 3 Nov 2012 12:47:08 +0100 Subject: vmware_vga: Allow simple drivers to work without using the fifo Postpone stopping the dirty log to the point where the command fifo is configured to allow drivers which don't use the fifo to work too. (Without this the picture rendered into the vram never got to the screen and the DIRECT_VRAM option meant to support this case was removed a year ago.) Signed-off-by: BALATON Zoltan Signed-off-by: Blue Swirl --- hw/vga.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/vga.c') diff --git a/hw/vga.c b/hw/vga.c index 023134ef68..81aa76bef9 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -1616,7 +1616,7 @@ void vga_invalidate_scanlines(VGACommonState *s, int y1, int y2) } } -static void vga_sync_dirty_bitmap(VGACommonState *s) +void vga_sync_dirty_bitmap(VGACommonState *s) { memory_region_sync_dirty_bitmap(&s->vram); } -- cgit v1.2.3