From: Avi Kivity <[email protected]> A recent merge reduced VGA memory to 8MB, which is insufficient for high resolutions.
Signed-off-by: Avi Kivity <[email protected]> diff --git a/hw/vga_int.h b/hw/vga_int.h index d715f30..1aaf5c5 100644 --- a/hw/vga_int.h +++ b/hw/vga_int.h @@ -217,5 +217,5 @@ void vga_draw_cursor_line_32(uint8_t *d1, const uint8_t *src1, extern const uint8_t sr_mask[8]; extern const uint8_t gr_mask[16]; -#define VGA_RAM_SIZE (8192 * 1024) +#define VGA_RAM_SIZE (16 * 1024 * 1024) -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
