From 8b1078038d04a861cc72c11cc759550a342c92fd Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 14 Mar 2004 05:57:43 +0000 Subject: [PATCH] Fix warning. --- stepmania/src/ScreenEvaluation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEvaluation.cpp b/stepmania/src/ScreenEvaluation.cpp index 8efd29f12c..740d2ccdb8 100644 --- a/stepmania/src/ScreenEvaluation.cpp +++ b/stepmania/src/ScreenEvaluation.cpp @@ -748,7 +748,7 @@ void ScreenEvaluation::Init() PerDifficultyAward pda = GAMESTATE->m_vLastPerDifficultyAwards[p].front(); CString sAward = PerDifficultyAwardToString( pda ); - m_PerDifficultyAward[p].Load( THEME->GetPathToG(ssprintf("ScreenEvaluation award %s",sAward.c_str(),p+1)) ); + m_PerDifficultyAward[p].Load( THEME->GetPathToG(ssprintf("ScreenEvaluation award %s",sAward.c_str())) ); m_PerDifficultyAward[p]->SetName( ssprintf("PerDifficultyAwardP%d",p+1) ); SET_XY_AND_ON_COMMAND( m_PerDifficultyAward[p] ); this->AddChild( m_PerDifficultyAward[p] );