aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-30 20:09:21 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-30 20:09:21 +0300
commit49427f83bc3751fdb35f567b17abf9ddbd87bd48 (patch)
tree89d43abb7b6c70600b6856399b545e294ff145cd /main.c
parent49d85b8583e57fe85c7f486fb483f34c3cd4186c (diff)
downloadastar-49427f83bc3751fdb35f567b17abf9ddbd87bd48.tar.xz
Update TODOs and FIXMEs
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.c b/main.c
index 604c448..f11fa3b 100644
--- a/main.c
+++ b/main.c
@@ -147,7 +147,6 @@ int main(int argc, char **argv) {
draw_map(map, width, height, offset_x, offset_y, start_pos, end_pos, NULL, path, visited, NULL);
char c = getch();
switch (c) {
- /* FIXME: scroll the view not the content or whatever */
case 'h': offset_x += 2; break;
case 'l': offset_x -= 2; break;
case 'j': offset_y -= 1; break;