summaryrefslogtreecommitdiff
path: root/src/util.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/util.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/util.c')
-rw-r--r--src/util.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util.c b/src/util.c
index 3021efa8..d7426526 100644
--- a/src/util.c
+++ b/src/util.c
@@ -2605,9 +2605,6 @@ static void msg_flush(int x)
{
byte a = TERM_L_BLUE;
- /* Hack -- fake monochrome */
- if (!use_color) a = TERM_WHITE;
-
/* Pause for response */
Term_putstr(x, 0, -1, a, "-more-");
@@ -2906,9 +2903,6 @@ void cmsg_format(byte color, cptr fmt, ...)
*/
void c_put_str(byte attr, cptr str, int row, int col)
{
- /* Hack -- fake monochrome */
- if (!use_color) attr = TERM_WHITE;
-
/* Position cursor, Dump the attr/text */
Term_putstr(col, row, -1, attr, str);
}
@@ -2930,9 +2924,6 @@ void put_str(cptr str, int row, int col)
*/
void c_prt(byte attr, cptr str, int row, int col)
{
- /* Hack -- fake monochrome */
- if (!use_color) attr = TERM_WHITE;
-
/* Clear line, position cursor */
Term_erase(col, row, 255);