summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 16:55:44 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 16:55:44 +0000
commit520860ef61705ef8bedb146285d067c1f8b7aabe (patch)
tree52de5f69b04df5819451c6432b80550375cfb013
parent5579c7f37ebba03f6732b4353cc7dc9fa497b7c2 (diff)
downloadqemu-520860ef61705ef8bedb146285d067c1f8b7aabe.tar.gz
Allocate enough vram for 24-bit planes.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7086 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--hw/tcx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tcx.c b/hw/tcx.c
index 4aa4b62ad5..f0e8f2fc4d 100644
--- a/hw/tcx.c
+++ b/hw/tcx.c
@@ -506,7 +506,7 @@ void tcx_init(target_phys_addr_t addr, int vram_size, int width, int height,
int size;
uint8_t *vram_base;
- vram_offset = qemu_ram_alloc(vram_size);
+ vram_offset = qemu_ram_alloc(vram_size * (1 + 4 + 4));
vram_base = qemu_get_ram_ptr(vram_offset);
s = qemu_mallocz(sizeof(TCXState));