diff options
author | james <> | 2008-02-07 12:16:04 +0000 |
---|---|---|
committer | james <> | 2008-02-07 12:16:04 +0000 |
commit | ab5452e7390705d3b46ca29e900d2c5ec9faf555 (patch) | |
tree | f1dfb6e48f4d180866420bae638368772d49fca9 /src/crt.c | |
parent | b7dab6019f661c3ef5d19f8faeacfec3a927f727 (diff) | |
download | sympathy-ab5452e7390705d3b46ca29e900d2c5ec9faf555.tar.gz sympathy-ab5452e7390705d3b46ca29e900d2c5ec9faf555.tar.bz2 sympathy-ab5452e7390705d3b46ca29e900d2c5ec9faf555.zip |
*** empty log message ***
Diffstat (limited to 'src/crt.c')
-rw-r--r-- | src/crt.c | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.6 2008/02/07 12:16:04 james + * *** empty log message *** + * * Revision 1.5 2008/02/06 11:30:37 james * *** empty log message *** * @@ -38,8 +41,10 @@ crt_erase (CRT * c, CRT_Pos s, CRT_Pos e, int ea) while (ps <= pe) { ps->chr = ' '; - if (ea) + if (ea){ ps->attr = CRT_ATTR_NORMAL; + ps->color = CRT_COLOR_NORMAL; + } ps++; } @@ -54,14 +59,6 @@ crt_cls (CRT * c) crt_erase (c, s, e, 1); -#if 0 - for (i = 0; i < CRT_ROWS; ++i) - { - c->screen[CRT_ADDR (i, i)].chr = '@' + i; - c->screen[CRT_ADDR (i, i)].attr = CRT_ATTR_NORMAL; - } -#endif - } void |