Skip to content

Commit

Permalink
Made the values of cheese squares constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
redleek committed Dec 7, 2014
1 parent 76ef050 commit d796a68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TacticalSpaceCheeseRacer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d796a68

Please sign in to comment.