From b87e3c705d89ab785b127058574bc64dc8792195 Mon Sep 17 00:00:00 2001 From: Andrew Livy Date: Sat, 23 May 2009 10:54:20 +0000 Subject: [PATCH] LOL Pt 1. --- 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 ee75a50719..7f37f7e6a6 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -2136,11 +2136,11 @@ public: PlayerNumber pn = Enum::Check(L, 1); Steps* pSteps; - if(p->m_pCurSong.Get() != NULL) + if( p->m_pCurSong.Get() != NULL ) { pSteps = p->m_pCurSong.Get()->GetStepsByStepsType(GAMESTATE->GetCurrentStyle()->m_StepsType)[pn]; - if(pSteps == NULL) + if( pSteps == NULL ) pSteps = p->m_pCurSteps[pn]; } else