From f422744e4fc91b7ba26f5ccd20e31aa473ff1c6c Mon Sep 17 00:00:00 2001 From: rurouni-hou-ou Date: Sun, 7 Dec 2014 03:33:41 +0000 Subject: [PATCH] Changed maximum number of players back to 4. --- TacticalSpaceCheeseRacer/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TacticalSpaceCheeseRacer/Program.cs b/TacticalSpaceCheeseRacer/Program.cs index 0d5a5d7..267981a 100644 --- a/TacticalSpaceCheeseRacer/Program.cs +++ b/TacticalSpaceCheeseRacer/Program.cs @@ -24,7 +24,7 @@ struct Player }; // Define constants we will want to use throughout the program. - const int MAX_PLAYERS = 5; + const int MAX_PLAYERS = 4; const int MIN_PLAYERS = 2; const int BOARD_UP_BOUND = 64; const int BOARD_LWR_BOUND = 0;