Change graphics mode back to "Colored"

This commit is contained in:
Stone_Red
2023-05-05 20:20:25 +02:00
parent 13eb590f73
commit 1b1b568bb0
+1 -1
View File
@@ -20,7 +20,7 @@ try
Console.Clear();
}
List<DfsNode> solution = solver.Solve(startNode, maze, GraphicsMode.None);
List<DfsNode> solution = solver.Solve(startNode, maze, GraphicsMode.Colored);
printer.PrintColored(maze, solution, redrawAll: true);