summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-07-31 11:43:25 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-07-31 11:43:25 +0000
commit294a55ad4d80fce05000af8edf94588c25762648 (patch)
tree50db154cc787e915c1cafa5d50a1a4c34492cce5 /amiga
parent0522be76abc8f189b298b3ce01969fcbf05b8764 (diff)
downloadnetsurf-294a55ad4d80fce05000af8edf94588c25762648.tar.gz
netsurf-294a55ad4d80fce05000af8edf94588c25762648.tar.bz2
off by one
svn path=/trunk/netsurf/; revision=10673
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 15ed79d0e..3986d2d0e 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -3180,7 +3180,7 @@ void ami_do_redraw(struct gui_window_2 *g)
gui_window_remove_caret(g->bw->window);
ScrollWindowRaster(g->win,hcurrent-oldh,vcurrent-oldv,
- xoffset,yoffset,xoffset+width,yoffset+height);
+ xoffset,yoffset,xoffset+width-1,yoffset+height-1);
g->bw->window->c_h = g->bw->window->c_h_temp;