From ba6688b40e18b3f82aba6bbd4599e68b9813d77c Mon Sep 17 00:00:00 2001 From: nhmall Date: Tue, 1 Feb 2022 17:18:44 -0500 Subject: [PATCH] follow-up to tilemap.c change --- win/share/tilemap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.50.1