remove return value; always true and never checked (texture load errors

are handled with warnings and a dummy texture)
This commit is contained in:
Glenn Maynard
2005-10-11 02:15:27 +00:00
parent a736d97aa2
commit a808a49b65
8 changed files with 20 additions and 26 deletions
+1 -2
View File
@@ -23,7 +23,7 @@ GradeDisplay::GradeDisplay()
SetGrade( PLAYER_1, Grade_NoData );
}
bool GradeDisplay::Load( RageTextureID ID )
void GradeDisplay::Load( RageTextureID ID )
{
ID.bStretch = true;
Sprite::Load( ID );
@@ -38,7 +38,6 @@ bool GradeDisplay::Load( RageTextureID ID )
LOG->Warn( sError );
Dialog::OK( sError );
}
return true;
}
void GradeDisplay::Update( float fDeltaTime )