From b2d78b67d8db88a91457a510af00d963535df612 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 24 Nov 2007 17:58:45 +0000 Subject: Use screen_draw_* to write message, avoids leaving attribute changes around. --- screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'screen.c') diff --git a/screen.c b/screen.c index b68974e2..2bb72fdd 100644 --- a/screen.c +++ b/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.42 2007-11-23 13:02:45 nicm Exp $ */ +/* $Id: screen.c,v 1.43 2007-11-24 17:58:45 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -450,7 +450,7 @@ screen_draw_line(struct screen_draw_ctx *ctx, u_int py) void screen_draw_lines(struct screen_draw_ctx *ctx, u_int py, u_int ny) { - u_int i; + u_int i; for (i = py; i < py + ny; i++) screen_draw_line(ctx, i); -- cgit