summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
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);