another recent bit of lint

This commit is contained in:
PatR
2015-06-16 02:42:17 -07:00
parent 1547e676f3
commit f6e46d286d
+7 -2
View File
@@ -1,4 +1,4 @@
/* NetHack 3.6 display.c $NHDT-Date: 1433901380 2015/06/10 01:56:20 $ $NHDT-Branch: master $:$NHDT-Revision: 1.62 $ */ /* NetHack 3.6 display.c $NHDT-Date: 1434447701 2015/06/16 09:41:41 $ $NHDT-Branch: master $:$NHDT-Revision: 1.63 $ */
/* Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy */ /* Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy */
/* and Dave Cohrs, 1990. */ /* and Dave Cohrs, 1990. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
@@ -1707,8 +1707,13 @@ STATIC_OVL int
get_bk_glyph(x,y) get_bk_glyph(x,y)
xchar x, y; xchar x, y;
{ {
#if 1
int retglyph = NO_GLYPH; int retglyph = NO_GLYPH;
/* struct rm *lev = &levl[x][y]; */ nhUse(x);
nhUse(y);
#else
struct rm *lev = &levl[x][y];
#endif
return retglyph; return retglyph;
} }