diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-12-06 19:57:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-12-06 19:57:01 +0000 |
commit | 91d790411ffe98004b3691ce42ac61482e4685c6 (patch) | |
tree | f79afa59fe31333fbad588819b39a7cffab3f5df /screen-write.c | |
parent | 2bc8108b3ef0f21694ff5f4a96a5461b69cf957a (diff) | |
download | rtmux-91d790411ffe98004b3691ce42ac61482e4685c6.tar.gz rtmux-91d790411ffe98004b3691ce42ac61482e4685c6.tar.bz2 rtmux-91d790411ffe98004b3691ce42ac61482e4685c6.zip |
Use the right function...
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/screen-write.c b/screen-write.c index 251084f6..f0693ec3 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1,4 +1,4 @@ -/* $Id: screen-write.c,v 1.4 2007-12-06 10:44:37 nicm Exp $ */ +/* $Id: screen-write.c,v 1.5 2007-12-06 19:57:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -383,9 +383,9 @@ screen_write_fill_end_of_screen(struct screen_write_ctx *ctx) struct screen *s = ctx->s; u_int i; - screen_fill_area(s, s->cx, s->cy, + screen_display_fill_area(s, s->cx, s->cy, screen_right_x(s, s->cx), 1, SCREEN_DEFDATA, s->attr, s->colr); - screen_fill_area(s, 0, s->cy + 1, screen_size_x(s), + screen_display_fill_area(s, 0, s->cy + 1, screen_size_x(s), screen_below_y(s, s->cy + 1), SCREEN_DEFDATA, s->attr, s->colr); if (ctx->write != NULL) { |