summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-08-01 21:24:18 +0100
committerVincent Sanders <vince@kyllikki.org>2019-08-01 22:34:13 +0100
commit654840e8452696bcc23633ca857c3a1fa0155d1e (patch)
tree1c5b594bffece03e45c019ffdb23803783767470
parent2943e9ae467050ce359cb40d45081d79e6128ac5 (diff)
downloadnetsurf-654840e8452696bcc23633ca857c3a1fa0155d1e.tar.gz
netsurf-654840e8452696bcc23633ca857c3a1fa0155d1e.tar.bz2
AMIGA: Update to remove rectangle scaling from browser window invalidate
-rw-r--r--frontends/amiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index f90b91ea9..f5a7cadea 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -4111,7 +4111,7 @@ static void ami_do_redraw_limits(struct gui_window *g, struct browser_window *bw
}
ami_do_redraw_tiled(g->shared, busy, x0, y0,
- (x1 - x0) * g->scale, (y1 - y0) * g->scale, sx, sy, bbox, &ctx);
+ x1 - x0, y1 - y0, sx, sy, bbox, &ctx);
ami_gui_free_space_box(bbox);