summaryrefslogtreecommitdiff
path: root/src/cmd4.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-07-31 08:58:42 +0200
committerBardur Arantsson <bardur@scientician.net>2010-07-31 12:37:21 +0200
commitba042a437d32a329b56058dbb4a91e36b898bd4a (patch)
tree4fbe397737fd8d823bcfc51927dc8e148d32890e /src/cmd4.c
parent3583ae42502f763b1d21933019d5323684a1135a (diff)
Remove obsolete and pointless options.
Affected options: - flow_by_smell (didn't do anything) - use_color - compress_savefile - flavored_attacks (was disabled via #if 0) - permanent_levels (was marked EXPERIMENTAL and didn't really work properly)
Diffstat (limited to 'src/cmd4.c')
-rw-r--r--src/cmd4.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cmd4.c b/src/cmd4.c
index 462df88d..6575b162 100644
--- a/src/cmd4.c
+++ b/src/cmd4.c
@@ -919,7 +919,7 @@ static void do_cmd_options_win(void)
cptr s = angband_term_name[j];
/* Use color */
- if (use_color && (j == x)) a = TERM_L_BLUE;
+ if ((j == x)) a = TERM_L_BLUE;
/* Window name, staggered, centered */
Term_putstr(35 + j * 5 - strlen(s) / 2, 2 + j % 2, -1, a, s);
@@ -933,7 +933,7 @@ static void do_cmd_options_win(void)
cptr str = window_flag_desc[i];
/* Use color */
- if (use_color && (i == y)) a = TERM_L_BLUE;
+ if ((i == y)) a = TERM_L_BLUE;
/* Unused option */
if (!str) str = "(Unused option)";
@@ -949,7 +949,7 @@ static void do_cmd_options_win(void)
char c = '.';
/* Use color */
- if (use_color && (i == y) && (j == x)) a = TERM_L_BLUE;
+ if ((i == y) && (j == x)) a = TERM_L_BLUE;
/* Active flag */
if (window_flag[j] & (1L << i)) c = 'X';
@@ -3112,9 +3112,6 @@ void do_cmd_load_screen(void)
if (hack[i] == buf[x]) a = i;
}
- /* Hack -- fake monochrome */
- if (!use_color) a = TERM_WHITE;
-
/* Put the attr/char */
Term_draw(x, y, a, c);
}