mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 07:05:10 +01:00
check for gca/gcb in menu.cpp / remove another reference to HBC
This commit is contained in:
parent
23a906f383
commit
b9e0e99d4e
@ -134,13 +134,15 @@ UpdateGUI (void *arg)
|
||||
|
||||
if (boothomebrew)
|
||||
{
|
||||
if(Settings.forwarder_path != "the homebrew channel")
|
||||
LoadHomebrew(Settings.forwarder_path.c_str());
|
||||
LoadHomebrew(Settings.forwarder_path.c_str());
|
||||
|
||||
string startingAppName = Settings.forwarder_path;
|
||||
|
||||
if((signed)startingAppName.rfind("/") != -1)
|
||||
startingAppName.erase(startingAppName.rfind("/"));
|
||||
|
||||
startingAppName.erase(0, startingAppName.rfind("/") +1);
|
||||
|
||||
if(IOS_GetVersion() != GetAppIOS(startingAppName))
|
||||
addAppIos(Settings.startingAppName, SelectedIOS());
|
||||
}
|
||||
@ -166,11 +168,18 @@ UpdateGUI (void *arg)
|
||||
else if(Settings.device == "dvd")
|
||||
check_dvd();
|
||||
|
||||
else if(Settings.device == "gca")
|
||||
check_gca();
|
||||
|
||||
else if(Settings.device == "gcb")
|
||||
|
||||
else if(Settings.device == "all")
|
||||
{
|
||||
check_sd();
|
||||
check_usb();
|
||||
check_dvd();
|
||||
check_gca();
|
||||
check_gcb();
|
||||
}
|
||||
|
||||
// screenshoot
|
||||
|
Loading…
Reference in New Issue
Block a user