-added new option in [DML] section, always_show_button to

give possibility to enter DML coverflow view even if 
DML is not present
This commit is contained in:
fix94.1 2012-02-11 20:36:31 +00:00
parent 3718e76bdc
commit 380b35aebf

View File

@ -1861,6 +1861,12 @@ void CMenu::UpdateCache(u32 view)
bool CMenu::MIOSisDML() bool CMenu::MIOSisDML()
{ {
if(m_cfg.getBool("DML", "always_show_button", false))
{
gprintf("Force enabling DML view\n");
return true;
}
u32 length; u32 length;
if( ES_GetStoredTMDSize( 0x100000101LL, &length ) < 0 ) if( ES_GetStoredTMDSize( 0x100000101LL, &length ) < 0 )
return false; return false;