From 743a45a7d0d4c0cd4564def179cd9d55b4165342 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Thu, 2 Dec 2021 00:16:32 +0200 Subject: [PATCH] Fix wrong P --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index c71c8c6..8eb7122 100644 --- a/Program.cs +++ b/Program.cs @@ -1,4 +1,4 @@ -using IdaStar; +using IdaStar; string[] labyrinthIN = System.IO.File.ReadAllLines(@"./labyrinth.txt"); @@ -94,7 +94,7 @@ void FormattedLabRow(string line) { break; } - case 'p': { + case 'P': { Console.BackgroundColor = ConsoleColor.Blue; Console.Write(" · "); break;