From 19a2258299789ba672ce650a56436199c012384d Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Fri, 24 Apr 2026 15:59:37 +0300 Subject: Remove an unnecessary line of code --- map.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/map.c b/map.c index 5940d02..b067475 100644 --- a/map.c +++ b/map.c @@ -624,9 +624,8 @@ void map_editor(Map *map, size_t *width, size_t *height, Position *start, Positi char **visited = NULL; Path path = NULL; - draw_map(*map, NULL, *width, *height, *start, *goal, NULL, path, visited, NULL); set_message("You've entered the map editor. 'q' to quit"); - print_message(*height); + draw_map(*map, NULL, *width, *height, *start, *goal, NULL, path, visited, NULL); MEVENT event; mmask_t oldmask; -- cgit v1.2.3