From: nhmall Date: Tue, 1 Feb 2022 22:18:44 +0000 (-0500) Subject: follow-up to tilemap.c change X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba6688b40e18b3f82aba6bbd4599e68b9813d77c;p=nethack follow-up to tilemap.c change --- diff --git a/win/share/tilemap.c b/win/share/tilemap.c index 5d35ac828..f22138d0e 100644 --- a/win/share/tilemap.c +++ b/win/share/tilemap.c @@ -1338,8 +1338,8 @@ main(int argc UNUSED, char *argv[] UNUSED) Fprintf(ofp, "%sTile_corr = %d,\n", indent, TILE_corr); /* X11 references it */ Fprintf(ofp, "%sTile_stone = %d,\n", indent, TILE_stone); Fprintf(ofp, "%sTile_unexplored = %d;\n", indent, TILE_unexplored); - Fprintf(ofp, "%smaxmontile = %d;\n", indent, lastmontile); - Fprintf(ofp, "%smaxobjtile = %d;\n", indent, lastobjtile); + Fprintf(ofp, "int maxmontile = %d,\n", lastmontile); + Fprintf(ofp, "%smaxobjtile = %d,\n", indent, lastobjtile); Fprintf(ofp, "%smaxothtile = %d;\n\n", indent, lastothtile); Fprintf(ofp, "/* glyph, ttychar, { color, symidx, ovidx, glyphflags, tileidx} */\n");