diff options
| -rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |
