From d796a6850ce244b26e8d23e8dddddc2704d00eab Mon Sep 17 00:00:00 2001 From: rurouni-hou-ou Date: Sun, 7 Dec 2014 17:38:25 +0000 Subject: [PATCH] Made the values of cheese squares constant. --- TacticalSpaceCheeseRacer/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TacticalSpaceCheeseRacer/Program.cs b/TacticalSpaceCheeseRacer/Program.cs index 16b8b53..6758a4f 100644 --- a/TacticalSpaceCheeseRacer/Program.cs +++ b/TacticalSpaceCheeseRacer/Program.cs @@ -39,7 +39,7 @@ struct Player static bool gamewon = false; // Locations of all the cheese squares. - static int[] cheese_squares = new int[8] { 8, 15, 19, 28, 33, 45, 55, 59 }; + const int[] cheese_squares = new int[8] { 8, 15, 19, 28, 33, 45, 55, 59 }; // Represents the status of debug mode # if DEBUG