diff --git a/doc/fixes36.2 b/doc/fixes36.2 index f22af782e..cfe7190f8 100644 --- a/doc/fixes36.2 +++ b/doc/fixes36.2 @@ -23,6 +23,8 @@ targetting with a polearm could give away location of hidden monster Fixes to Post-3.6.1 Problems that Were Exposed Via git Repository ------------------------------------------------------------------ fix access violation when --debug:xxxx has no other args after it +Setting the inverse attribute for gold had the space before "$:" + getting highlighted along with the gold field Platform- and/or Interface-Specific Fixes diff --git a/win/tty/wintty.c b/win/tty/wintty.c index fc40dcc75..42dad00c2 100644 --- a/win/tty/wintty.c +++ b/win/tty/wintty.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 wintty.c $NHDT-Date: 1526429383 2018/05/16 00:09:43 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.166 $ */ +/* NetHack 3.6 wintty.c $NHDT-Date: 1526909614 2018/05/21 13:33:34 $ $NHDT-Branch: NetHack-3.6.2 $:$NHDT-Revision: 1.167 $ */ /* Copyright (c) David Cohrs, 1991 */ /* NetHack may be freely redistributed. See license for details. */ @@ -4175,6 +4175,10 @@ render_status(VOID_ARGS) * +-----------+ */ if (iflags.hilite_delta) { + if (*text == ' ') { + tty_putstatusfield(nullfield, " ", x++, y); + text++; + } /* multiple attributes can be in effect concurrently */ Begin_Attr(attridx); if (coloridx != NO_COLOR && coloridx != CLR_MAX)