From 1b1b568bb0450fb3f7ca5f7d3299fb76cbad7e7c Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 5 May 2023 20:20:25 +0200 Subject: [PATCH] Change graphics mode back to "Colored" --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index c6586bc..64930b9 100644 --- a/Program.cs +++ b/Program.cs @@ -20,7 +20,7 @@ try Console.Clear(); } - List solution = solver.Solve(startNode, maze, GraphicsMode.None); + List solution = solver.Solve(startNode, maze, GraphicsMode.Colored); printer.PrintColored(maze, solution, redrawAll: true);