Fix DP calculation when using transforms

This commit is contained in:
Glenn Maynard
2003-08-13 19:51:53 +00:00
parent 6e4e3b2f1d
commit 5a231e9cd4
3 changed files with 33 additions and 8 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ ScreenGameplay::ScreenGameplay( bool bDemonstration ) : Screen("ScreenGameplay")
switch( PREFSMAN->m_iScoringType )
{
case PrefsManager::SCORING_MAX2:
m_pPrimaryScoreKeeper[p] = new ScoreKeeperMAX2( m_apNotesQueue[p], (PlayerNumber)p );
m_pPrimaryScoreKeeper[p] = new ScoreKeeperMAX2( m_apNotesQueue[p], m_asModifiersQueue[p], (PlayerNumber)p );
break;
case PrefsManager::SCORING_5TH:
m_pPrimaryScoreKeeper[p] = new ScoreKeeper5th( m_apNotesQueue[p], (PlayerNumber)p );