summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-16 15:15:46 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-16 15:15:46 +0800
commit4a3e36dfe65197a898ae9bf9c328a483dfffbc18 (patch)
treef66f3a5a3e466a23085482d1678bbd853836ec06
parent7c8f3e12cac76bd8120190be359a6f7f6a691d64 (diff)
downloadpttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar.gz
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar.bz2
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar.lz
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar.xz
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.tar.zst
pttbbs-4a3e36dfe65197a898ae9bf9c328a483dfffbc18.zip
- fix b_config lines calculation
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3692 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 0a6d6234..a15ab96a 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -191,9 +191,9 @@ b_config(void)
const int ytitle = b_lines -
#ifndef OLDRECOMMEND
- LNBOARDINFO+1;
+ (LNBOARDINFO+1); // new format
#else // OLDRECOMMEND
- LNBOARDINFO;
+ (LNBOARDINFO); // old (less)
#endif // OLDRECOMMEND
grayout_lines(0, ytitle-1, 0);