diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index eafd2f94dd..fe0598e1d3 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1063,6 +1063,9 @@ void ScreenGameplay::LoadLights() if( !LIGHTSMAN->IsEnabled() ) return; + // + // First, check if the song has explicit lights + // m_CabinetLightsNoteData.Init(); ASSERT( GAMESTATE->m_pCurSong ); @@ -1073,6 +1076,9 @@ void ScreenGameplay::LoadLights() return; } + // + // No explicit lights. Create autogen lights. + // CString sDifficulty = PREFSMAN->m_sLightsStepsDifficulty; vector asDifficulties; split( sDifficulty, ",", asDifficulties );