diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-24 17:58:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-24 17:58:45 +0000 |
commit | b2d78b67d8db88a91457a510af00d963535df612 (patch) | |
tree | 9cb885786c4748112d5be6f924c6b8e831407598 /screen.c | |
parent | 01dd8a3320b33c9ef6b802447492a9b699f3295c (diff) | |
download | rtmux-b2d78b67d8db88a91457a510af00d963535df612.tar.gz rtmux-b2d78b67d8db88a91457a510af00d963535df612.tar.bz2 rtmux-b2d78b67d8db88a91457a510af00d963535df612.zip |
Use screen_draw_* to write message, avoids leaving attribute changes around.
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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); |