From 5cefc9584a3a33ca750a741f2cc7632003897977 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 13 Feb 2011 23:04:26 +0000 Subject: Pass clip rect to browser_window_redraw as pointer. svn path=/trunk/netsurf/; revision=11672 --- amiga/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga/gui.c') diff --git a/amiga/gui.c b/amiga/gui.c index c6cdaf019..a6e5a20df 100755 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -3149,7 +3149,7 @@ void ami_do_redraw_limits(struct gui_window *g, struct browser_window *bw, clip.x1 = (x1 - sx); clip.y1 = (y1 - sy); - if(browser_window_redraw(bw, -sx, -sy, clip)) + if(browser_window_redraw(bw, -sx, -sy, &clip)) { ami_clearclipreg(&browserglob); BltBitMapRastPort(browserglob.bm, @@ -3300,7 +3300,7 @@ void ami_do_redraw(struct gui_window_2 *g) glob->scale = g->bw->scale; - if(browser_window_redraw(g->bw, -hcurrent, -vcurrent, clip)) + if(browser_window_redraw(g->bw, -hcurrent, -vcurrent, &clip)) { ami_clearclipreg(&browserglob); BltBitMapRastPort(browserglob.bm,0,0,g->win->RPort,bbox->Left,bbox->Top, -- cgit v1.2.3