diff --git a/stepmania/src/ProfileHtml.cpp b/stepmania/src/ProfileHtml.cpp index 04cec6c250..7e35cc35c8 100644 --- a/stepmania/src/ProfileHtml.cpp +++ b/stepmania/src/ProfileHtml.cpp @@ -182,7 +182,7 @@ void PrintInstructions( RageFile &f, const Profile *pProfile, CString sTitle ) PRINT_OPEN(f,"Overview",true); { BEGIN_TABLE(1); - TABLE_LINE1("

This directory contains all your game profile data. Please read these instructions before modifying or moving any of these files. Modifying files may result in irreversible loss of your data.

\n"); + TABLE_LINE1("

This directory contains all your game profile data. Please read these instructions before modifying or moving any files on your memory card. Modifying files may result in irreversible loss of your data.

\n"); END_TABLE; } PRINT_CLOSE(f); @@ -650,13 +650,11 @@ bool PrintGradeTableForStepsType( RageFile &f, const Profile *pProfile, StepsTyp if( pSteps && !pSteps->IsAutogen() ) { f.PutLine(""); - f.PutLine(""); - f.PutLine( ssprintf("",pSteps->GetMeter()) ); + f.PutLine( ssprintf("%d",pSteps->GetMeter()) ); HighScore hs = pProfile->GetStepsHighScoreList( pSteps ).GetTopScore(); Grade grade = hs.grade; if( grade != GRADE_NO_DATA ) - f.PutLine( ssprintf("",GradeToThemedString(grade).c_str()) ); - f.PutLine("

%d

%s

"); + f.PutLine( ssprintf("%s",GradeToThemedString(grade).c_str()) ); f.PutLine(""); } else