summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-17 01:44:11 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-17 01:44:11 +0800
commit440d1c00eb77739f182ced3fca9fc312d767cf7f (patch)
tree41e51769a7e5529c1b831ba8da1f1fb7eca9502d
parent7fb34b27f904d8eeefdfdf6a45d362dc889aaadd (diff)
downloadpttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar.gz
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar.bz2
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar.lz
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar.xz
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.tar.zst
pttbbs-440d1c00eb77739f182ced3fca9fc312d767cf7f.zip
show the current/max page in vote
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1996 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/vote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/vote.c b/mbbsd/vote.c
index 5325e64c..1f64ad1f 100644
--- a/mbbsd/vote.c
+++ b/mbbsd/vote.c
@@ -941,7 +941,7 @@ user_vote_one(char *bname, int ind)
vote[0] = vote[1] = '\0';
move(t_lines - 2, 0);
- prints("你還可以投 %2d 票", tickets - i);
+ prints("你還可以投 %2d 票 [ 目前所在頁數 %2d / 共 %2d 頁 (可輸入 '<' '>' 換頁) ]", tickets - i, curr_page + 1, max_page);
getdata(t_lines - 4, 0, "輸入您的選擇: ", vote, sizeof(vote), DOECHO);
*vote = toupper(*vote);