From 840434dd49f4d81a196ec64d58d5c8d7636d56ad Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 8 Mar 2004 00:07:42 +0000 Subject: [PATCH] Fix compile. --- stepmania/src/Profile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 030bb2361d..1252ce8a70 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -1553,8 +1553,8 @@ XNode* Profile::AwardRecord::CreateNode() const XNode* pNode = new XNode; pNode->name = "AwardRecord"; - pNode->AppendChild( "FirstTime", first ); - pNode->AppendChild( "LastTime", last ); + pNode->AppendChild( "FirstTime", int(first) ); + pNode->AppendChild( "LastTime", int(last) ); pNode->AppendChild( "Count", iCount ); return pNode;