aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-04-16 23:19:00 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-04-16 23:19:00 +0300
commit89fa6474af46fef1545ebf4b6e5f0c550ae278f2 (patch)
treeb09bbb871fc56104b72f3c9887061ec0f17a488a /main.c
parent402e5e5531306f298e7a153b05db0b4253dba92e (diff)
downloadastar-89fa6474af46fef1545ebf4b6e5f0c550ae278f2.tar.xz
Add a TODO entry
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index 9668236..95ee0f6 100644
--- a/main.c
+++ b/main.c
@@ -196,6 +196,7 @@ int main(int argc, char **argv) {
else { set_message("A*"); path_func = &astar_path; };
path_free(path, height);
path = path_func(dirs, map, cell_costs, width, height, start_pos, end_pos, visited, anim);
+ /* TODO: print time */
break;
case 'y':