summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/menu.c4
-rw-r--r--mbbsd/stuff.c2
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 {