diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-24 02:21:24 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-24 02:21:24 +0000 |
commit | 38334f76300260480e3bd3b77cb5b86fd3d66038 (patch) | |
tree | 26b7205a3350582c427e6534281c422dd9175cde /hw/vmware_vga.c | |
parent | 818220f5e9ef39fc5025b9f2277fac483d99d330 (diff) |
Don't use ds->dpy_copy directly from hw/ (Jan Niehusmann).
I left a TODO in the code because this still doesn't definitely
fix all issues.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5308 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index efbcd966a5..625cd83576 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -384,7 +384,7 @@ static inline void vmsvga_copy_rect(struct vmsvga_state_s *s, # ifdef DIRECT_VRAM if (s->ds->dpy_copy) - s->ds->dpy_copy(s->ds, x0, y0, x1, y1, w, h); + qemu_console_copy(s->console, x0, y0, x1, y1, w, h); else # endif { |