aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-09-08 17:40:51 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-09-08 17:40:51 +0000
commit4235ddb4e86ddd02275396b890d0671494ff956d (patch)
tree178531844b695e9968b4354b2b116a06d518ee8b /server.c
parent33aa9315414dca1218b3c88b0c5ffc89d4379974 (diff)
downloadrtmux-4235ddb4e86ddd02275396b890d0671494ff956d.tar.gz
rtmux-4235ddb4e86ddd02275396b890d0671494ff956d.tar.bz2
rtmux-4235ddb4e86ddd02275396b890d0671494ff956d.zip
Initial 256 colour support, lightly tested.
Diffstat (limited to 'server.c')
-rw-r--r--server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server.c b/server.c
index e9ea3130..ed421922 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.78 2008-08-28 17:45:27 nicm Exp $ */
+/* $Id: server.c,v 1.79 2008-09-08 17:40:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -344,8 +344,8 @@ server_check_redraw(struct client *c)
if (sx < xx)
screen_redraw_columns(&ctx, sx, xx - sx);
if (sy < yy) {
- screen_fill_area(&screen,
- 0, sy, xx, 1, '-', 0, 0x88);
+ screen_fill_area(
+ &screen, 0, sy, xx, 1, '-', 0, 8, 8);
screen_redraw_lines(&ctx, sy, yy - sy);
}
screen_redraw_stop(&ctx);