add ScoreKeeperGuitar

This commit is contained in:
Chris Danford
2006-11-16 00:57:48 +00:00
parent 86037fa6cd
commit d78deea28d
5 changed files with 29 additions and 3 deletions
+2 -1
View File
@@ -68,6 +68,7 @@
static ThemeMetric<float> INITIAL_BACKGROUND_BRIGHTNESS ("ScreenGameplay","InitialBackgroundBrightness");
static ThemeMetric<float> SECONDS_BETWEEN_COMMENTS ("ScreenGameplay","SecondsBetweenComments");
static ThemeMetric<RString> SCORE_KEEPER_CLASS ("ScreenGameplay","ScoreKeeperClass");
AutoScreenMessage( SM_PlayGo )
@@ -164,7 +165,7 @@ void PlayerInfo::Load( PlayerNumber pn, MultiPlayer mp, bool bShowNoteField )
if( m_pSecondaryScoreDisplay )
m_pSecondaryScoreDisplay->Init( pPlayerState, pPlayerStageStats );
m_pPrimaryScoreKeeper = new ScoreKeeperNormal( pPlayerState, pPlayerStageStats );
m_pPrimaryScoreKeeper = ScoreKeeper::MakeScoreKeeper( SCORE_KEEPER_CLASS, pPlayerState, pPlayerStageStats );
switch( GAMESTATE->m_PlayMode )
{