From 4f44b09195646799e6c639c8bf0fde968eee7a44 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 6 Dec 2007 10:16:36 +0000 Subject: Redraw buglets. --- screen-display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'screen-display.c') diff --git a/screen-display.c b/screen-display.c index 4124a61e..d786c19c 100644 --- a/screen-display.c +++ b/screen-display.c @@ -1,4 +1,4 @@ -/* $Id: screen-display.c,v 1.10 2007-12-06 09:46:22 nicm Exp $ */ +/* $Id: screen-display.c,v 1.11 2007-12-06 10:16:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -68,7 +68,7 @@ screen_display_fill_area(struct screen *s, u_int px, u_int py, return; if (!screen_in_x(s, px) || !screen_in_y(s, py)) return; - if (!screen_in_x(s, px + nx - 1) || !screen_in_y(s, py - ny - 1)) + if (!screen_in_x(s, px + nx - 1) || !screen_in_y(s, py + ny - 1)) return; screen_fill_area( s, screen_x(s, px), screen_y(s, py), nx, ny, data, attr, colr); -- cgit