From b376525785fda44a9df2edccc907024386cf6acc Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Thu, 2 Dec 2021 00:46:51 +0200 Subject: [PATCH] Changed dots in printout --- Program.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Program.cs b/Program.cs index dc3e50e..f20c546 100644 --- a/Program.cs +++ b/Program.cs @@ -20,9 +20,9 @@ algoBoard.AlgorithmStep += (_, threshold) => { if(done){ System.Console.WriteLine("The solved labyrinth is:"); }else if(step%2 == 0) { - System.Console.WriteLine($"Computing (threshold: {threshold}) [· ]"); + System.Console.WriteLine($"Computing (threshold: {threshold}) [• ]"); }else { - System.Console.WriteLine($"Computing (threshold: {threshold}) [ ·]"); + System.Console.WriteLine($"Computing (threshold: {threshold}) [ •]"); } //top border @@ -86,7 +86,7 @@ void FormattedLabRow(string line) { case 'S': { Console.BackgroundColor = ConsoleColor.Green; - Console.Write("<·>"); + Console.Write("<•>"); break; } @@ -98,7 +98,7 @@ void FormattedLabRow(string line) { case 'P': { Console.BackgroundColor = ConsoleColor.Blue; - Console.Write(" · "); + Console.Write(" • "); break; }