-/* 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 */
/* and Dave Cohrs, 1990. */
/* NetHack may be freely redistributed. See license for details. */
get_bk_glyph(x,y)
xchar x, y;
{
+#if 1
int retglyph = NO_GLYPH;
- /* struct rm *lev = &levl[x][y]; */
+ nhUse(x);
+ nhUse(y);
+#else
+ struct rm *lev = &levl[x][y];
+#endif
return retglyph;
}