diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-29 16:30:06 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-29 16:30:06 +0300 |
| commit | 3cdb2a67a452ec39dc13268ab86c11e737685073 (patch) | |
| tree | c188ee6f083d0cb7c00e97722b3f3604a837f654 /main.c | |
| parent | 3f4d45ae2ad3258a4c13fe7bacc9f52d6ad68ee1 (diff) | |
| download | astar-3cdb2a67a452ec39dc13268ab86c11e737685073.tar.xz | |
Add direction arrows to draw_map()
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
