From e843119db37c8ad61a6ecf5b804d53ba49ee7cfc Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 11 Feb 2004 03:53:47 +0000 Subject: [PATCH] fix name saving twice. Duh. --- stepmania/src/HighScore.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/stepmania/src/HighScore.cpp b/stepmania/src/HighScore.cpp index 8ebebcbd67..b738a31c8c 100644 --- a/stepmania/src/HighScore.cpp +++ b/stepmania/src/HighScore.cpp @@ -45,7 +45,6 @@ XNode* HighScore::CreateNode() const // TRICKY: Don't write "name to fill in" markers. pNode->AppendChild( "Name", IsRankingToFillIn(sName) ? "" : sName ); - pNode->AppendChild( "sName", sName ); pNode->AppendChild( "Grade", grade ); pNode->AppendChild( "Score", iScore ); pNode->AppendChild( "PercentDP", fPercentDP );