untested build fix for term_attr_fixup()

modified:
  sys/mac/mttymain.c
  sys/msdos/video.c
  sys/winnt/nttty.c
This commit is contained in:
PatR
2019-04-02 07:38:57 -07:00
parent be966cfe5a
commit add4d4d724
3 changed files with 22 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* NetHack 3.6 video.c $NHDT-Date: 1457207042 2016/03/05 19:44:02 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.11 $ */
/* NetHack 3.6 video.c $NHDT-Date: 1554215931 2019/04/02 14:38:51 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) NetHack PC Development Team 1993, 1994, 2001 */
/* NetHack may be freely redistributed. See license for details. */
/* */
@@ -285,6 +285,12 @@ standoutend()
g_attribute = iflags.grmode ? attrib_gr_normal : attrib_text_normal;
}
int
term_attr_fixup(int attrmask)
{
return attrmask;
}
void
term_end_attr(int attr)
{