From 8bbfbc837f2b9d54189289aeabfe9f0dcff91032 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Thu, 2 Dec 2021 00:26:24 +0200 Subject: [PATCH] Fix bug lol (again) --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 8e9c67f..babba88 100644 --- a/Program.cs +++ b/Program.cs @@ -19,7 +19,7 @@ algoBoard.AlgorithmStep += (_) => { step++; if(done){ System.Console.WriteLine("The solved labyrinth is:"); - }else if(step/2 == 0) { + }else if(step%2 == 0) { System.Console.WriteLine("Computing [· ]"); }else { System.Console.WriteLine("Computing [ ·]");