From eb52af08866b3ddb5a181dc3c26450454cc4d79c Mon Sep 17 00:00:00 2001 From: bwbl Date: Thu, 24 Oct 2024 01:31:20 +0200 Subject: [PATCH] fix an stupid error --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index a303574..742dbe1 100644 --- a/Program.cs +++ b/Program.cs @@ -548,7 +548,7 @@ public void DrawBoard(Token[,] board) { // déclaration de l'espacement du plateau - int playgroundSpacing = topSpacing + 3 + int playgroundSpacing = topSpacing + 3; for (int y = 0; y < board.GetLength(1); y++) for (int x = 0; x < board.GetLength(0); x++) {