From c284036395de74ca8f36da0f06bd1e86c3f668fe Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 5 May 2023 19:51:57 +0200 Subject: [PATCH] Small fixes --- Maze.csproj | 3 --- Program.cs | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Maze.csproj b/Maze.csproj index 651638a..7aef2bf 100644 --- a/Maze.csproj +++ b/Maze.csproj @@ -12,9 +12,6 @@ - - Always - Always diff --git a/Program.cs b/Program.cs index 4e0f8cc..b941c4c 100644 --- a/Program.cs +++ b/Program.cs @@ -17,6 +17,7 @@ try { ConsoleExt.WriteLine("Console window size too small. Visualizing the maze may cause errors!", ConsoleColor.Red); ConsoleExt.Pause(true, "Press ENTER to continue or CTRL+C to exit the program."); + Console.Clear(); } List solution = solver.Solve(startNode, maze, GraphicsMode.Colored);