diff --git a/src/Makefile.am b/src/Makefile.am index 3fbefc627d..adc83ab9ee 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -154,6 +154,7 @@ ScoreKeeper.h ScoreKeeper.cpp \ ScoreKeeperGuitar.cpp ScoreKeeperGuitar.h \ ScoreKeeperNormal.cpp ScoreKeeperNormal.h \ ScoreKeeperRave.cpp ScoreKeeperRave.h \ +ScoreKeeperShared.cpp ScoreKeeperShared.h \ Song.cpp Song.h SongCacheIndex.cpp SongCacheIndex.h \ SongOptions.cpp SongOptions.h SongUtil.cpp SongUtil.h StageStats.cpp StageStats.h Steps.cpp Steps.h \ SoundEffectControl.cpp SoundEffectControl.h \ diff --git a/src/ScoreKeeperShared.cpp b/src/ScoreKeeperShared.cpp index ed2fbb64c5..3851ab3b51 100644 --- a/src/ScoreKeeperShared.cpp +++ b/src/ScoreKeeperShared.cpp @@ -15,7 +15,7 @@ void ScoreKeeperShared::OnNextSong( int iSongInCourseIndex, const Steps* pSteps, { vector vParts; PlayerNumber pn = m_pPlayerState->m_PlayerNumber; - + NoteDataUtil::SplitCompositeNoteData( *pNoteData, vParts ); ScoreKeeperNormal::OnNextSong( iSongInCourseIndex, pSteps, &vParts[pn] ); } diff --git a/src/ScoreKeeperShared.h b/src/ScoreKeeperShared.h index b80497484c..2dadccab0b 100644 --- a/src/ScoreKeeperShared.h +++ b/src/ScoreKeeperShared.h @@ -8,7 +8,7 @@ class ScoreKeeperShared : public ScoreKeeperNormal { public: ScoreKeeperShared( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats ); - + void OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ); }; #endif