fix banner showing for non-unlocked

This commit is contained in:
Chris Danford
2006-05-04 11:57:54 +00:00
parent c6fa5e9854
commit eddc3c288b
+4 -1
View File
@@ -61,7 +61,10 @@ void ScreenUnlockBrowse::HandleMessage( const RString& sMessage )
{
int iSelection = this->GetSelectionIndex(PLAYER_1);
const UnlockEntry &ue = UNLOCKMAN->m_UnlockEntries[ iSelection ];
m_banner.LoadBannerFromUnlockEntry( &ue );
if( ue.IsLocked() )
m_banner.LoadFallback();
else
m_banner.LoadBannerFromUnlockEntry( &ue );
}
ScreenSelectMaster::HandleMessage( sMessage );