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.
This commit is contained in:
@@ -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}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user