From 12ce0f9bf4de60c3ffc9c335d42740e86d3aa778 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 30 Sep 2006 01:29:55 +0000 Subject: [PATCH] fix TWO_PLAYERS_SHARED_SIDES --- stepmania/src/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Game.cpp b/stepmania/src/Game.cpp index 10a1f80bde..9dc1f95d86 100644 --- a/stepmania/src/Game.cpp +++ b/stepmania/src/Game.cpp @@ -57,11 +57,11 @@ void Game::MenuButtonToGameInputs( MenuButton MenuI, PlayerNumber pn, GameInput { case ONE_PLAYER_ONE_SIDE: case TWO_PLAYERS_TWO_SIDES: + case TWO_PLAYERS_SHARED_SIDES: controller[0] = (GameController)pn; iNumSidesUsing = 1; break; case ONE_PLAYER_TWO_SIDES: - case TWO_PLAYERS_SHARED_SIDES: controller[0] = GAME_CONTROLLER_1; controller[1] = GAME_CONTROLLER_2; iNumSidesUsing = 2;