...what's four letters and printed in gold?

This commit is contained in:
AJ Kelly
2010-06-03 14:32:33 -05:00
parent 3959410460
commit a85a9e36b8
+8 -2
View File
@@ -493,8 +493,14 @@ RageColor SongManager::GetSongColor( const Song* pSong ) const
if( pSteps->GetMeter() >= EXTRA_COLOR_METER )
return (RageColor)EXTRA_COLOR;
}
return GetSongGroupColor( pSong->m_sGroupName );
if( pSong->m_sMainTitle == "DVNO")
{
return RageColor(1.0f,0.8f,0.0f,1.0f);
}
else
{
return GetSongGroupColor( pSong->m_sGroupName );
}
}
}