From aab2b32e23e82f501e186138391f7cfd9e12afce Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 14 Feb 2009 16:49:49 +0000 Subject: Fix silly mistake moving cursor to top left all the time svn path=/trunk/netsurf/; revision=6502 --- framebuffer/fb_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framebuffer/fb_gui.c') diff --git a/framebuffer/fb_gui.c b/framebuffer/fb_gui.c index bc86ba11b..ef7845fef 100644 --- a/framebuffer/fb_gui.c +++ b/framebuffer/fb_gui.c @@ -265,7 +265,7 @@ void gui_poll(bool active) if (redraws_pending == true) { struct gui_window *g; - fb_cursor_move(framebuffer, 0,0); + fb_cursor_move(framebuffer, fb_cursor_x(framebuffer), fb_cursor_y(framebuffer)); redraws_pending = false; -- cgit v1.2.3