summaryrefslogtreecommitdiffstats
path: root/mbbsd/bbs.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-01 18:01:51 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-01 18:01:51 +0800
commit4c256182f70ad244e0ec40af45c0c0857abb0a01 (patch)
treef2663fd39c9234b611a9d3fb8f01fcc3cecaf008 /mbbsd/bbs.c
parentd2e9ddb320e18206dcb54e7d8476fdc73e489fa9 (diff)
downloadpttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar.gz
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar.bz2
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar.lz
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar.xz
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.tar.zst
pttbbs-4c256182f70ad244e0ec40af45c0c0857abb0a01.zip
- add move_ansi() to support moving to lines with prior ANSI code.
- general improvement git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3602 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r--mbbsd/bbs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index 51f45a54..116bfe17 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -3278,15 +3278,15 @@ b_config(void)
" 回文 (群組長以上才可設定此項)",
(bp->brdattr & BRD_NOREPLY) ? "不可以" : "可以" );
- move(b_lines - 10, 62);
+ move_ansi(b_lines - 10, 52);
prints("發文限制");
- move(b_lines - 9, 64);
+ move_ansi(b_lines - 9, 54);
prints("上站次數 %d 次以上", (int)bp->post_limit_logins * 10);
- move(b_lines - 8, 64);
+ move_ansi(b_lines - 8, 54);
prints("文章篇數 %d 篇以上", (int)bp->post_limit_posts * 10);
- move(b_lines - 7, 64);
+ move_ansi(b_lines - 7, 54);
prints("註冊時間 %d 個月以上", (int)bp->post_limit_regtime);
- move(b_lines - 6, 64);
+ move_ansi(b_lines - 6, 54);
prints("劣文篇數 %d 篇以下", 255 - (int)bp->post_limit_badpost);
move(b_lines, 0);