From 8105adfae584a27265106acaee89bcd4da7b2a3c Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Thu, 12 Jun 2003 03:28:39 +0000 Subject: [PATCH] Long ago we received a bug report complaining that hilite_pet on Win32 (tty) wasn't respecting the setting of "use_inverse" (plain "inverse" at the time I think). In response, we made it respect the setting. The "use_inverse" setting is off by default however, so we've now had about three complaints about hilite_pet not working. So I'm changing the default value for win32 tty to having "use_inverse" set to TRUE. They can still override it in the config file that way. --- src/options.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/options.c b/src/options.c index 945e11588..707302b00 100644 --- a/src/options.c +++ b/src/options.c @@ -186,7 +186,11 @@ static struct Bool_Opt {"tombstone",&flags.tombstone, TRUE, SET_IN_GAME}, {"toptenwin",&flags.toptenwin, FALSE, SET_IN_GAME}, {"travel", &flags.travelcmd, TRUE, SET_IN_GAME}, +#ifdef WIN32CON + {"use_inverse", &iflags.wc_inverse, TRUE, SET_IN_GAME}, /*WC*/ +#else {"use_inverse", &iflags.wc_inverse, FALSE, SET_IN_GAME}, /*WC*/ +#endif {"verbose", &flags.verbose, TRUE, SET_IN_GAME}, {(char *)0, (boolean *)0, FALSE, 0} };