From a7d4f08b77245cc66ace55e60032b194e1c9db13 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 1 Sep 2011 12:37:46 +0000 Subject: Remove redundant bw->current_content check. svn path=/trunk/netsurf/; revision=12696 --- riscos/window.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'riscos/window.c') diff --git a/riscos/window.c b/riscos/window.c index e266866c0..0306735e4 100644 --- a/riscos/window.c +++ b/riscos/window.c @@ -754,14 +754,10 @@ void gui_window_redraw_window(struct gui_window *g) void gui_window_update_box(struct gui_window *g, const struct rect *rect) { - hlcache_handle *h = g->bw->current_content; bool use_buffer; int x0, y0, x1, y1; struct update_box *cur; - if (!h) - return; - x0 = floorf(rect->x0 * 2 * g->bw->scale); y0 = -ceilf(rect->y1 * 2 * g->bw->scale); x1 = ceilf(rect->x1 * 2 * g->bw->scale) + 1; -- cgit v1.2.3