From d2d2887cbcf5dced13eba8ec84f75a3ff9fa5d1d Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 30 Nov 2019 15:51:58 -0500 Subject: [PATCH] leave option setting as previous (it was not part of the change) --- src/options.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/options.c b/src/options.c index e9071996a..c1e946ade 100644 --- a/src/options.c +++ b/src/options.c @@ -106,7 +106,11 @@ static struct Bool_Opt { #endif { "clicklook", &iflags.clicklook, FALSE, SET_IN_GAME }, { "cmdassist", &iflags.cmdassist, TRUE, SET_IN_GAME }, +#if defined(MICRO) || defined(WIN32) || defined(CURSES_GRAPHICS) { "color", &iflags.wc_color, TRUE, SET_IN_GAME }, /* on/off: use WC or not */ +#else /* systems that support multiple terminals, many monochrome */ + { "color", &iflags.wc_color, FALSE, SET_IN_GAME }, +#endif { "confirm", &flags.confirm, TRUE, SET_IN_GAME }, { "dark_room", &flags.dark_room, TRUE, SET_IN_GAME }, { "eight_bit_tty", &iflags.wc_eight_bit_input, FALSE, SET_IN_GAME }, /*WC*/