Fixed ScreenEvaluationSummary to not run off the end of its banner list if over 5 songs were played. Added Alejandro to translation credits.
This commit is contained in:
@@ -258,7 +258,8 @@ void ScreenEvaluation::Init()
|
||||
{
|
||||
if( SUMMARY )
|
||||
{
|
||||
for( unsigned i=0; i<m_pStageStats->m_vpPlayedSongs.size(); i++ )
|
||||
for( size_t i=0; i<m_pStageStats->m_vpPlayedSongs.size()
|
||||
&& i < MAX_SONGS_TO_SHOW; i++ )
|
||||
{
|
||||
Song *pSong = m_pStageStats->m_vpPlayedSongs[i];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user