From a93dbf377800d48d5b0adf69f1214b663e61e917 Mon Sep 17 00:00:00 2001 From: Vecais Dumais Laacis Date: Sat, 24 Feb 2007 12:48:16 +0000 Subject: [PATCH] StyleType_OnePlayerTwoSides for One player, two-sides styles cost extra --- stepmania/src/GameState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index b7567af056..2414bad25e 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -526,11 +526,11 @@ int GameState::GetNumStagesForSongAndStyle( const Song* pSong, const Style *pSty switch( pStyle->m_StyleType ) { DEFAULT_FAIL( pStyle->m_StyleType ); - case StyleType_OnePlayerOneSide: + case StyleType_OnePlayerTwoSides: iNumStages *= 2; break; case StyleType_TwoPlayersTwoSides: - case StyleType_OnePlayerTwoSides: + case StyleType_OnePlayerOneSide: case StyleType_TwoPlayersSharedSides: break; }