From 68e787ef8883b75b95134a9649ee257395ca5258 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Sat, 11 Apr 2026 22:26:01 +0300 Subject: Add a TODO entry --- main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main.c b/main.c index 154fc9a..91770a7 100644 --- a/main.c +++ b/main.c @@ -146,6 +146,7 @@ int main(int argc, char **argv) { while (1) { draw_map(map, width, height, start_pos, end_pos, NULL, path, visited, NULL); char c = getch(); + /* TODO: add a keybinding to calculate the path again, or maybe do it on 'a' */ switch (c) { case 'h': map_offset_x += 2; break; case 'l': map_offset_x -= 2; break; -- cgit v1.2.3