From 01d315364aabd87e6882957d3b97f9f4c9309b3f Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 17 Oct 2005 06:55:58 +0000 Subject: [PATCH] Fix gcc (3.3) 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 ea322674a6..2ccacd99ca 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -691,7 +691,7 @@ CString GameCommand::GetAndClearScreen() CString sName = cmd->GetName(); if( sName == "screen" ) { - sRet = cmd->GetArg(1); + sRet = CString( cmd->GetArg(1) ); m_Commands.v.erase( cmd ); break; }