diff --git a/stepmania/src/HighScore.cpp b/stepmania/src/HighScore.cpp index 7ed08bc701..8ebebcbd67 100644 --- a/stepmania/src/HighScore.cpp +++ b/stepmania/src/HighScore.cpp @@ -43,11 +43,9 @@ XNode* HighScore::CreateNode() const XNode* pNode = new XNode; pNode->name = "HighScore"; - if( IsRankingToFillIn(sName) ) - { - // TRICKY: Don't write "name to fill in" markers. - pNode->AppendChild( "Name", IsRankingToFillIn(sName) ? "" : sName ); - } + // 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 );