summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-22 21:45:56 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-22 21:45:56 +0800
commit98c49497bcceafc996d7ce482d9c258405fb64f1 (patch)
tree281568030053a20397708f4cb2045f34e7291c43
parentc26c9952c3c9e44bb7af7f7d4e480bae0daaf528 (diff)
downloadpttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar.gz
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar.bz2
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar.lz
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar.xz
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.tar.zst
pttbbs-98c49497bcceafc996d7ce482d9c258405fb64f1.zip
fix bug of screen overflow
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@708 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/vice.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/vice.c b/pttbbs/mbbsd/vice.c
index 2f5aa310..2792e47e 100644
--- a/pttbbs/mbbsd/vice.c
+++ b/pttbbs/mbbsd/vice.c
@@ -1,4 +1,4 @@
-/* $Id: vice.c,v 1.7 2003/01/19 16:06:06 kcwu Exp $ */
+/* $Id: vice.c,v 1.8 2003/03/22 13:45:56 in2 Exp $ */
#include "bbs.h"
#define VICE_PLAY BBSHOME "/etc/vice/vice.play"
@@ -112,6 +112,8 @@ vice_main()
*ptr = 0;
if (j == 0)
i++;
+ if( i >= 14 )
+ break;
move(10 + i, 24 + j);
prints("%s", serial);
j += 9;