From d00062b9152fbfd586a62cbfd757b3e8aa4dd198 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 20 Jan 2005 02:04:46 +0000 Subject: [PATCH] fix gcc compile --- stepmania/src/GameCommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index 69319e5a55..30b64b1c62 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -139,7 +139,7 @@ void GameCommand::Load( int iIndex, const Commands& cmds ) { if( i > 1 ) sValue += ","; - sValue += command->GetArg(i); + sValue += (CString) command->GetArg(i); } if( sName == "game" )