summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-11-17 17:19:28 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-11-17 17:19:28 +0000
commit9a1a1209be4461eb3b7ff40eed23aa35ab0c54e2 (patch)
treef9e145332461e3d7e21430d97bb7128fb2a28da4
parent61241b731c4d92ed2dc77beb262645cea1593fdb (diff)
downloadnetsurf-9a1a1209be4461eb3b7ff40eed23aa35ab0c54e2.tar.gz
netsurf-9a1a1209be4461eb3b7ff40eed23aa35ab0c54e2.tar.bz2
debug
-rwxr-xr-xamiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index a081a5213..45b0b4157 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -1049,7 +1049,7 @@ bool ami_ns_to_screen_coords(struct gui_window_2 *gwin, int *x, int *y)
ns_y *= gwin->bw->scale;
if((ns_x < 0) || (ns_x > bbox->Width) || (ns_y < 0) || (ns_y > bbox->Height))
- return false;
+ /* outside screen bounds, but we don't care yet - return false */;
ami_get_hscroll_pos(gwin, (ULONG *)&xs);
ami_get_vscroll_pos(gwin, (ULONG *)&ys);