CString -> RString

This commit is contained in:
Chris Danford
2006-01-22 01:00:06 +00:00
parent 870ed267fc
commit 7f821e8cfc
578 changed files with 3943 additions and 3946 deletions
+2 -2
View File
@@ -30,11 +30,11 @@ void GradeDisplay::Load( RageTextureID ID )
Sprite::StopAnimating();
bool bWarn = Sprite::GetNumStates() != 8 && Sprite::GetNumStates() != 16;
if( ID.filename.find("_blank") != CString::npos )
if( ID.filename.find("_blank") != RString::npos )
bWarn = false;
if( bWarn )
{
CString sError = ssprintf( "The grade graphic '%s' must have either 8 or 16 frames.", ID.filename.c_str() );
RString sError = ssprintf( "The grade graphic '%s' must have either 8 or 16 frames.", ID.filename.c_str() );
LOG->Warn( sError );
Dialog::OK( sError );
}