diff options
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r-- | mbbsd/board.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 4600c095..e8718ea4 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.13 2002/05/24 18:34:22 ptt Exp $ */ +/* $Id: board.c,v 1.14 2002/05/24 18:42:51 ptt Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -618,9 +618,9 @@ static void show_brdlist(int head, int clsflag, int newflag) { if (ptr->bh->brdattr & BRD_BAD) prints(" X "); else if(ptr->bh->nuser>30) - prints("\033[31mHOT\033[m"); - else if(ptr->bh->nuser) - prints("\033[31m%2d\033[m ",ptr->bh->nuser); + prints("\033[1;31mHOT\033[m"); + else if(ptr->bh->nuser>0) + prints("\033[1;31m%2d\033[m ",ptr->bh->nuser); else prints(" %c ", ptr->bh->bvote? 'V':' '); prints("%.13s", ptr->bh->BM); refresh(); |