aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-29 21:02:56 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-29 21:02:56 +0300
commit2f8fba218e9db6f0835500c49d1b74155c96d43b (patch)
tree92509a7e94c21256d2794c76378f57fd02a1c6ad
parent2a9f8b25aaea4385b427ab0a6fc5a4037f669a81 (diff)
downloadastar-2f8fba218e9db6f0835500c49d1b74155c96d43b.tar.xz
Update a TODO entry in map.c
-rw-r--r--map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/map.c b/map.c
index 242af58..888f2e3 100644
--- a/map.c
+++ b/map.c
@@ -211,7 +211,7 @@ Map file_plaintext_map(char *filename, size_t *width, size_t *height, Position *
/* TODO: so many fucking arguments lmao. Break it down into several functions? */
/* TODO: draw the start and goal with no background, allowing us to see the frontier/path/whatever's underneath. I think attr_get() will be useful */
/* TODO: only draw a portion of the map (for bigger ones) */
-/* TODO: draw path arrows, because why not */
+/* TODO: draw arrow for visited too */
void draw_map(Map map, size_t width, size_t height, int offset_x, int offset_y, Position start, Position goal, Position *cursor, Path path, char **visited, PositionPQ *frontier) {
/* I think it flickers less when we do that */
wnoutrefresh(stdscr);