From a381630ac2abcd68ea1ac8d0d8b80d3ab628c225 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 22 Feb 2004 05:50:54 +0000 Subject: [PATCH] gcc compile fix --- stepmania/src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 1ebc9998a3..fa5114e303 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -1275,7 +1275,7 @@ XNode* Profile::SaveScreenshotDataCreateNode() const pScreenshotNode->AppendChild( "FileName", ss.sFileName ); pScreenshotNode->AppendChild( "MD5", ss.sMD5); - pScreenshotNode->AppendChild( "Time", ss.time); + pScreenshotNode->AppendChild( "Time", (int) ss.time); } return pNode;