diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-02-09 12:33:28 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-02-09 12:33:28 +0800 |
commit | 07875ded5ef76dc03946c65b9c953ff49d4366de (patch) | |
tree | 167009aff25ae4f684164e6f06dc0261aa86a221 | |
parent | 8cd12bafdff1bc683dda7906c66a5b716734459a (diff) | |
download | pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar.gz pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar.bz2 pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar.lz pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar.xz pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.tar.zst pttbbs-07875ded5ef76dc03946c65b9c953ff49d4366de.zip |
- menu: pad title length to align most fields again
- stuff: fix angel pause prompt message
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3906 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/menu.c | 4 | ||||
-rw-r--r-- | mbbsd/stuff.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/menu.c b/mbbsd/menu.c index 5cec4c2b..20fed243 100644 --- a/mbbsd/menu.c +++ b/mbbsd/menu.c @@ -106,7 +106,7 @@ showtitle(const char *title, const char *mid) if(currboard[0] && pos+rlen < t_columns) { // print right stuff - while(++pos < t_columns-rlen) + while(pos++ < t_columns-rlen) outc(' '); outs(title_tail_attrs[tail_type]); outs(title_tail_msgs[tail_type]); @@ -119,7 +119,7 @@ showtitle(const char *title, const char *mid) outs("》" ANSI_RESET "\n"); } else { // just pad it. - while(++pos < t_columns) + while(pos++ < t_columns) outc(' '); outs(ANSI_RESET "\n"); } diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c index 1d278426..9156fd3f 100644 --- a/mbbsd/stuff.c +++ b/mbbsd/stuff.c @@ -273,7 +273,7 @@ pressanykey_or_callangel(){ outmsg( ANSI_COLOR(1;34;44) " ▄▄▄▄ " ANSI_COLOR(32) "H " ANSI_COLOR(36) "呼叫小天使" ANSI_COLOR(34) - " ▄▄▄▄" ANSI_COLOR(37;44) " 請按 " ANSI_COLOR(36) "任意鍵 " + " ▄▄▄▄" ANSI_COLOR(37;44) " 請按 " ANSI_COLOR(36) "空白鍵 " ANSI_COLOR(37) "繼續 " ANSI_COLOR(1;34) "▄▄▄▄▄▄▄▄▄▄▄▄▄▄ " ANSI_RESET); do { |