From e7a0b4ccd38df38a65cc89e2a08ebc6970b892be Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 18 Apr 2004 22:06:55 +0000 Subject: [PATCH] fix compile --- stepmania/src/HighScore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/HighScore.cpp b/stepmania/src/HighScore.cpp index ece5ac78ee..39baffe0fd 100644 --- a/stepmania/src/HighScore.cpp +++ b/stepmania/src/HighScore.cpp @@ -54,7 +54,7 @@ XNode* HighScore::CreateNode() const pNode->AppendChild( "PercentDP", fPercentDP ); pNode->AppendChild( "SurviveSeconds", fSurviveSeconds ); pNode->AppendChild( "Modifiers", sModifiers ); - pNode->AppendChild( "Time", time ); + pNode->AppendChild( "Time", (int)time ); pNode->AppendChild( "MachineGuid", sMachineGuid ); return pNode;