Stop blocking home button, it was just annoying

This commit is contained in:
Huntereb 2019-12-10 21:37:30 -05:00
parent f0623eb588
commit b175770afa
2 changed files with 0 additions and 4 deletions

View file

@ -117,7 +117,6 @@ namespace netInstStuff{
void installTitleNet(std::vector<std::string> ourUrlList, int ourStorage, std::vector<std::string> urlListAltNames, std::string ourSource)
{
inst::util::initInstallServices();
if (appletGetAppletType() == AppletType_Application || appletGetAppletType() == AppletType_SystemApplication) appletBeginBlockingHomeButton(0);
inst::ui::loadInstallScreen();
bool nspInstalled = true;
NcmStorageId m_destStorageId = NcmStorageId_SdCard;
@ -199,7 +198,6 @@ namespace netInstStuff{
}
LOG_DEBUG("Done");
if (appletGetAppletType() == AppletType_Application || appletGetAppletType() == AppletType_SystemApplication) appletEndBlockingHomeButton();
inst::ui::loadMainMenu();
inst::util::deinitInstallServices();
return;

View file

@ -84,7 +84,6 @@ namespace nspInstStuff {
void installNspFromFile(std::vector<std::filesystem::path> ourTitleList, int whereToInstall)
{
inst::util::initInstallServices();
if (appletGetAppletType() == AppletType_Application || appletGetAppletType() == AppletType_SystemApplication) appletBeginBlockingHomeButton(0);
inst::ui::loadInstallScreen();
bool nspInstalled = true;
NcmStorageId m_destStorageId = NcmStorageId_SdCard;
@ -184,7 +183,6 @@ namespace nspInstStuff {
}
LOG_DEBUG("Done");
if (appletGetAppletType() == AppletType_Application || appletGetAppletType() == AppletType_SystemApplication) appletEndBlockingHomeButton();
inst::ui::loadMainMenu();
inst::util::deinitInstallServices();
return;