diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-24 15:59:37 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-24 15:59:37 +0300 |
| commit | 19a2258299789ba672ce650a56436199c012384d (patch) | |
| tree | d931447400f065b8957701bd5583d2ade4777678 | |
| parent | c75402d182e9ab1b8af846af9f7348c9431b5e66 (diff) | |
| download | astar-19a2258299789ba672ce650a56436199c012384d.tar.xz | |
Remove an unnecessary line of code
| -rw-r--r-- | map.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |
