From 00524aeb59b42966f9893474be842078231e1966 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 10 Feb 2004 10:15:27 +0000 Subject: [PATCH] fix warnings --- stepmania/src/HighScore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() );