Browse Source

Fix wrong P

pull/1/head
Kenneth Bruen 3 years ago
parent
commit
743a45a7d0
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 4
      Program.cs

4
Program.cs

@ -1,4 +1,4 @@
using IdaStar; using IdaStar;
string[] labyrinthIN = System.IO.File.ReadAllLines(@"./labyrinth.txt"); string[] labyrinthIN = System.IO.File.ReadAllLines(@"./labyrinth.txt");
@ -94,7 +94,7 @@ void FormattedLabRow(string line) {
break; break;
} }
case 'p': { case 'P': {
Console.BackgroundColor = ConsoleColor.Blue; Console.BackgroundColor = ConsoleColor.Blue;
Console.Write(" · "); Console.Write(" · ");
break; break;

Loading…
Cancel
Save