diff options
Diffstat (limited to 'mbbsd/menu.c')
-rw-r--r-- | mbbsd/menu.c | 4 |
1 files changed, 2 insertions, 2 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("¡n" ANSI_RESET "\n"); } else { // just pad it. - while(++pos < t_columns) + while(pos++ < t_columns) outc(' '); outs(ANSI_RESET "\n"); } |