diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-08-18 09:32:04 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-08-18 09:32:04 +0000 |
commit | 83acc96b235753f089fadd7f755a9856a31165f2 (patch) | |
tree | b82533840efcbc4bf0b9419636b5aa00f585c3ee /hw/vga_int.h | |
parent | 6e1b3e4da4de3720c8bd29cf22933a87e801b0d5 (diff) |
fixed VGA resolutions with height > 1024
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2121 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/vga_int.h')
-rw-r--r-- | hw/vga_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/vga_int.h b/hw/vga_int.h index e4a4a46cd4..70127768a4 100644 --- a/hw/vga_int.h +++ b/hw/vga_int.h @@ -108,7 +108,8 @@ int (*get_bpp)(struct VGAState *s); \ void (*get_offsets)(struct VGAState *s, \ uint32_t *pline_offset, \ - uint32_t *pstart_addr); \ + uint32_t *pstart_addr, \ + uint32_t *pline_compare); \ void (*get_resolution)(struct VGAState *s, \ int *pwidth, \ int *pheight); \ |