diff --git a/src/executor.rs b/src/executor.rs index 14d9173..6c88403 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -131,14 +131,14 @@ where fn draw(maze: &Maze, tried: &HashSet, tick: usize, path: &Vec) { let mut overlay = HashMap::new(); for position in tried { - overlay.insert(*position, 'T'); - } - - for position in path { overlay.insert(*position, '#'); } - overlay.insert(*path.last().unwrap(), 'G'); + for position in path { + overlay.insert(*position, 'P'); + } + + overlay.insert(*path.last().unwrap(), 'x'); let text = maze.display(Some(overlay));