diff --git a/stepmania/src/HighScore.cpp b/stepmania/src/HighScore.cpp index 9cbc612d69..7ed08bc701 100644 --- a/stepmania/src/HighScore.cpp +++ b/stepmania/src/HighScore.cpp @@ -61,7 +61,7 @@ void HighScore::LoadFromNode( XNode* pNode ) { ASSERT( pNode->name == "HighScore" ); XNodes childs = pNode->GetChilds(); - for( int i = 0 ; i < childs.size(); i++) + for( unsigned i = 0 ; i < childs.size(); i++) { XNode* pChild = childs[i]; if( pChild->name == "Name" ) pChild->GetValue( sName ); @@ -118,7 +118,7 @@ XNode* HighScoreList::CreateNode() const pNode->AppendChild( "NumTimesPlayed", iNumTimesPlayed ); - for( int i=0; iAppendChild( hs.CreateNode() );