summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-25 13:47:47 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-25 13:47:47 +0800
commit9d32c7b079ab545dbacbb7cd3de64a5f54335485 (patch)
treeae3dba47c71f91ebc19b313cf8d44726b97459fc
parent67ffc7654419486b0874fc25f23545e477be2682 (diff)
downloadpttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar.gz
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar.bz2
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar.lz
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar.xz
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.tar.zst
pttbbs-9d32c7b079ab545dbacbb7cd3de64a5f54335485.zip
prevent scroll for all situation!
because some people complained about scrolling makes their useless head dizzy. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2953 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/bbs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index 6202ef53..0e47ce79 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -1877,7 +1877,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct)
{
// owner recomment first time
type = 2;
- scroll(); move(b_lines-1, 0);
+ move(b_lines-1, 0); clrtoeol();
outs("本人推薦第一次, 使用 → 加註方式\n");
}
#ifndef DEBUG
@@ -1885,7 +1885,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct)
{
// too close
type = 2;
- scroll(); move(b_lines-1, 0);
+ move(b_lines-1, 0); clrtoeol();
outs("推薦時間太近, 使用 → 加註方式\n");
}
#endif