faster ranking song score scroll speed

This commit is contained in:
Chris Danford
2003-12-31 07:20:05 +00:00
parent b72e9d7c89
commit ddbc750a49
2 changed files with 8 additions and 7 deletions
+5 -5
View File
@@ -48,11 +48,11 @@ void ListDisplay::Load(
float fSecondsPauseBetweenItems,
bool bSlide )
{
ASSERT( iNumItemsToShow > 0 );
ASSERT( fItemWidth > 0 );
ASSERT( fItemHeight > 0 );
ASSERT( fSecondsPerItem > 0 );
ASSERT( fSecondsPauseBetweenItems >= 0 );
CLAMP( iNumItemsToShow, 1, 10000 );
CLAMP( fItemWidth, 1, 10000 );
CLAMP( fItemHeight, 1, 10000 );
CLAMP( fSecondsPerItem, 0.01f, 10000 );
CLAMP( fSecondsPauseBetweenItems, 0, 10000 );
m_SubActors = m_vpItems;
m_iNumItemsToShow = iNumItemsToShow;