aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-29 16:30:06 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-29 16:30:06 +0300
commit3cdb2a67a452ec39dc13268ab86c11e737685073 (patch)
treec188ee6f083d0cb7c00e97722b3f3604a837f654 /main.c
parent3f4d45ae2ad3258a4c13fe7bacc9f52d6ad68ee1 (diff)
downloadastar-3cdb2a67a452ec39dc13268ab86c11e737685073.tar.xz
Add direction arrows to draw_map()
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index f876697..eded452 100644
--- a/main.c
+++ b/main.c
@@ -39,7 +39,7 @@ void initialize_colors(void) {
init_pair(GOAL_COLOR, -1, COLOR_RED);
init_pair(WALL_COLOR, COLOR_WHITE, COLOR_WHITE);
init_pair(START_COLOR, -1, COLOR_RED);
- init_pair(PATH_COLOR, COLOR_RED, COLOR_RED);
+ init_pair(PATH_COLOR, COLOR_YELLOW, COLOR_RED);
init_pair(FRONTIER_COLOR, COLOR_BLUE, COLOR_BLUE);
init_pair(CURSOR_COLOR, -1, COLOR_RED);
}