mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
vga: do not treat horiz pel panning value of 8 as "enabled"
Horizontal pel panning bit 3 is only used in text mode. In graphics mode, it can be treated as if it was zero, thus not extending the dirty memory region. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@ -1571,7 +1571,9 @@ static void vga_draw_graphic(VGACommonState *s, int full_update)
|
||||
break;
|
||||
}
|
||||
}
|
||||
hpel = bits <= 8 ? s->params.hpel : 0;
|
||||
|
||||
/* Horizontal pel panning bit 3 is only used in text mode. */
|
||||
hpel = bits <= 8 ? s->params.hpel & 7 : 0;
|
||||
|
||||
region_start = (s->params.start_addr * 4);
|
||||
region_end = region_start + (ram_addr_t)s->params.line_offset * height;
|
||||
|
Reference in New Issue
Block a user