diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-03-26 19:06:05 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-03-26 19:06:05 +0800 |
commit | 632edbc87172c2d452637d5ad2f02f2f9d94f3bd (patch) | |
tree | 9eecbfb3c3a5bd98ff87c6634c666b991d33277d /mbbsd/user.c | |
parent | 54bd97319d19e80a2414d3f78383c23a2391a2b1 (diff) | |
download | pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.gz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.bz2 pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.lz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.xz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.zst pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.zip |
user could set if hilight favorite
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@717 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 3c1ad1e6..68c7f048 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -1,4 +1,4 @@ -/* $Id: user.c,v 1.50 2003/03/26 10:22:54 in2 Exp $ */ +/* $Id: user.c,v 1.51 2003/03/26 11:06:05 in2 Exp $ */ #include "bbs.h" static char *sex[8] = { @@ -213,6 +213,8 @@ static void Customize(void) prints("%-30s%10s\n", "C. 新板自動進我的最愛", ((cuser.uflag2 & FAVNEW_FLAG) ? "是" : "否")); prints("%-30s%10s\n", "D. 目前的心情", mindbuf); + prints("%-30s%10s\n", "E. 高亮度顯示我的最愛", + ((cuser.uflag2 & FAVNOHILIGHT) ? "否" : "是")); getdata(b_lines - 1, 0, "請按 [A-5] 切換設定,按 [Return] 結束:", ans, sizeof(ans), DOECHO); @@ -242,6 +244,9 @@ static void Customize(void) memcpy(currutmp->mind, mindbuf, 4); } break; + case 'e': + cuser.uflag2 ^= FAVNOHILIGHT; + break; default: done = 1; } |