Browse Source

Fix bug lol (again)

pull/1/head
Kenneth Bruen 3 years ago
parent
commit
8bbfbc837f
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 2
      Program.cs

2
Program.cs

@ -19,7 +19,7 @@ algoBoard.AlgorithmStep += (_) => {
step++; step++;
if(done){ if(done){
System.Console.WriteLine("The solved labyrinth is:"); System.Console.WriteLine("The solved labyrinth is:");
}else if(step/2 == 0) { }else if(step%2 == 0) {
System.Console.WriteLine("Computing [· ]"); System.Console.WriteLine("Computing [· ]");
}else { }else {
System.Console.WriteLine("Computing [ ·]"); System.Console.WriteLine("Computing [ ·]");

Loading…
Cancel
Save