summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-13 15:04:05 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-13 15:04:05 +0800
commit350e701d38798b0227168a1e8ab009baa7438819 (patch)
tree14714a5ec8849d6031be8d974bec11885853e30f
parent35813f885d9d155163dbc712179f398e1fe44ea2 (diff)
downloadpttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar.gz
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar.bz2
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar.lz
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar.xz
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.tar.zst
pttbbs-350e701d38798b0227168a1e8ab009baa7438819.zip
fixed waterball vmsg:
vmsg cannot support multiline. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2838 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/talk.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c
index 40585253..e73246c1 100644
--- a/mbbsd/talk.c
+++ b/mbbsd/talk.c
@@ -2656,9 +2656,13 @@ userlist(void)
cuser.uflag2 -= tmp;
tmp = (tmp + 1) % 3;
cuser.uflag2 |= tmp;
- vmsg("�t�δ��� �@�� �i�� ���� �T�ؼҦ�\n"
- "�b��������`�U�u�A���s�n�J, �H�T�O���c���T\n"
- "�ثe������ %s ���y�Ҧ�\n", wm[tmp]);
+ /* vmsg cannot support multi lines */
+ move(b_lines - 4, 0);
+ clrtobot();
+ move(b_lines - 3, 0);
+ prints("�t�δ��� �@�� �i�� ���� �T�ؼҦ�\n"
+ "�b��������`�U�u�A���s�n�J, �H�T�O���c���T\n");
+ vmsg( "�ثe������ %s ���y�Ҧ�", wm[tmp]);
redrawall = redraw = 1;
}
break;