From 3cdb2a67a452ec39dc13268ab86c11e737685073 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Sun, 29 Mar 2026 16:30:06 +0300 Subject: Add direction arrows to draw_map() --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') 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); } -- cgit v1.2.3