Remove redundant bw->current_content check.

svn path=/trunk/netsurf/; revision=12696
This commit is contained in:
Michael Drake 2011-09-01 12:37:46 +00:00
parent 088c91b127
commit a7d4f08b77
1 changed files with 0 additions and 4 deletions

View File

@ -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;