mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-27 13:44:15 +01:00
-made the plugin coverflow id stuff as needed for categories etc
This commit is contained in:
parent
1a2f1aa028
commit
ff08312b3a
@ -219,8 +219,8 @@ void CMenu::init()
|
||||
/* Check if we want a cIOS loaded */
|
||||
u8 prevCios = mainIOS;
|
||||
bool prevForceCIOS = useMainIOS;
|
||||
int ForceIOS = min(m_cfg.getInt("GENERAL", "force_cios_rev", 0), 254);
|
||||
if(ForceIOS > 0)
|
||||
u8 ForceIOS = min(m_cfg.getInt("GENERAL", "force_cios_rev", 0), 254);
|
||||
if(mainIOS != ForceIOS)
|
||||
{
|
||||
gprintf("Using IOS%i instead of IOS%i as main cIOS.\n", ForceIOS, mainIOS);
|
||||
mainIOS = ForceIOS;
|
||||
@ -2570,12 +2570,24 @@ void CMenu::_cleanupDefaultFont()
|
||||
m_wbf2_font = NULL;
|
||||
}
|
||||
|
||||
char tmp[256];
|
||||
const char *CMenu::_getId()
|
||||
{
|
||||
const char *id = NULL;
|
||||
dir_discHdr *hdr = CoverFlow.getHdr();
|
||||
if(hdr->type == TYPE_HOMEBREW || hdr->type == TYPE_PLUGIN)
|
||||
if(hdr->type == TYPE_HOMEBREW)
|
||||
id = strrchr(hdr->path, '/') + 1;
|
||||
else if(hdr->type == TYPE_PLUGIN)
|
||||
{
|
||||
tmp[0] = '\0';
|
||||
if(strrchr(hdr->path, ':') != NULL)
|
||||
{
|
||||
strcat(tmp, strchr(hdr->path, '/') + 1);
|
||||
*(strchr(tmp, '/') + 1) = '\0';
|
||||
}
|
||||
strcat(tmp, fmt("%ls",hdr->title));
|
||||
id = tmp;
|
||||
}
|
||||
else
|
||||
id = CoverFlow.getId();
|
||||
return id;
|
||||
|
Loading…
Reference in New Issue
Block a user