]> granicus.if.org Git - nethack/commitdiff
another recent bit of lint
authorPatR <rankin@nethack.org>
Tue, 16 Jun 2015 09:42:17 +0000 (02:42 -0700)
committerPatR <rankin@nethack.org>
Tue, 16 Jun 2015 09:42:17 +0000 (02:42 -0700)
src/display.c

index f9db10ebad2b3a43beaeb0a4dc18f0002c947ff9..8a54895389987aa9d64df895bab2c080976c62a9 100644 (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 */
 /* and Dave Cohrs, 1990.                                         */
 /* NetHack may be freely redistributed.  See license for details. */
@@ -1707,8 +1707,13 @@ STATIC_OVL int
 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;
 }