Fix VC6 compile
This commit is contained in:
@@ -325,7 +325,7 @@ void Player::Update( float fDeltaTime )
|
|||||||
|
|
||||||
|
|
||||||
// process transforms that are waiting to be applied
|
// process transforms that are waiting to be applied
|
||||||
for( unsigned i=0; i<GAMESTATE->m_TransformsToApply[m_PlayerNumber].size(); i++ )
|
for( unsigned j=0; j<GAMESTATE->m_TransformsToApply[m_PlayerNumber].size(); j++ )
|
||||||
{
|
{
|
||||||
// Start beat needs to be far enough ahead to be off screen so that
|
// Start beat needs to be far enough ahead to be off screen so that
|
||||||
// addition arrows don't suddenly pop on.
|
// addition arrows don't suddenly pop on.
|
||||||
@@ -338,7 +338,7 @@ void Player::Update( float fDeltaTime )
|
|||||||
|
|
||||||
LOG->Trace( "Applying transform from %f to %f", fStartBeat, fEndBeat );
|
LOG->Trace( "Applying transform from %f to %f", fStartBeat, fEndBeat );
|
||||||
|
|
||||||
switch( GAMESTATE->m_TransformsToApply[m_PlayerNumber][i] )
|
switch( GAMESTATE->m_TransformsToApply[m_PlayerNumber][j] )
|
||||||
{
|
{
|
||||||
case PlayerOptions::TRANSFORM_LITTLE:
|
case PlayerOptions::TRANSFORM_LITTLE:
|
||||||
NoteDataUtil::Little( *this, fStartBeat, fEndBeat );
|
NoteDataUtil::Little( *this, fStartBeat, fEndBeat );
|
||||||
|
|||||||
Reference in New Issue
Block a user