summaryrefslogtreecommitdiffstats
path: root/mbbsd/menu.c
diff options
context:
space:
mode:
authorptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-12 21:47:03 +0800
committerptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-12 21:47:03 +0800
commitd044c958c8acf4cd0dff6fed337d485b9c0f30a4 (patch)
tree94396a0006bd54be61eb953015590cc543fadb95 /mbbsd/menu.c
parent7d4d38cd01595fab2551b723e57ce8dba885319d (diff)
downloadpttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar.gz
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar.bz2
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar.lz
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar.xz
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.tar.zst
pttbbs-d044c958c8acf4cd0dff6fed337d485b9c0f30a4.zip
remove MODE_ETC useless function
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1960 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/menu.c')
-rw-r--r--mbbsd/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/menu.c b/mbbsd/menu.c
index 3c4dcbae..f85adfdc 100644
--- a/mbbsd/menu.c
+++ b/mbbsd/menu.c
@@ -51,7 +51,7 @@ showtitle(char *title, char *mid)
clear();
prints(TITLE_COLOR "【%s】%s\033[33m%s%s%s\033[3%s《",
title, buf, mid, buf, " " + pad,
- currmode & MODE_SELECT ? "6m系列" : currmode & MODE_ETC ? "5m其他" :
+ currmode & MODE_SELECT ? "6m系列" :
currmode & MODE_DIGEST ? "2m文摘" : "7m看板");
if (strcmp(currboard, lastboard)) { /* change board */
@@ -68,7 +68,7 @@ showtitle(char *title, char *mid)
else
prints("%s", currboard);
prints("\033[3%dm》\033[0m\n", currmode & MODE_SELECT ? 6 :
- currmode & MODE_ETC ? 5 : currmode & MODE_DIGEST ? 2 : 7);
+ currmode & MODE_DIGEST ? 2 : 7);
}
/* 動畫處理 */