This commit is contained in:
Glenn Maynard
2005-09-26 19:52:04 +00:00
parent a1d9d49d6c
commit 1178d1df75
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -24,7 +24,6 @@ ActorScroller::ActorScroller()
m_fCurrentItem = 0;
m_fDestinationItem = 0;
m_fSecondsPerItem = 1;
m_fNumItemsToDraw = 7;
m_fSecondsPauseBetweenItems = 0;
m_fNumItemsToDraw = 7;
m_bLoop = false;
+1 -1
View File
@@ -683,7 +683,7 @@ void WheelBase::RebuildWheelItems( int iDist )
for( int i=0; i < -iDist; i++ )
{
int iIndex = iFirstVisibleIndex + i;
wrap( iIndex, m_WheelBaseItemsData.size() );
wrap( iIndex, data.size() );
WheelItemBaseData *pData = data[iIndex];
WheelItemBase *pDisplay = items[i];