Install anyway?

This commit is contained in:
JeffRuLz 2019-01-11 21:49:56 -06:00 committed by GitHub
parent 370be53528
commit b5b2c8feb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -341,11 +341,14 @@ void install(Menu* m)
if (getDsiFree() < fileSize)
{
iprintf("No\n");
if (choiceBox("Try installing anyway?") == NO)
goto error;
}
else
{
iprintf("Yes\n");
}
}
//Menu slot check
{
@ -354,11 +357,14 @@ void install(Menu* m)
if (getMenuSlotsFree() <= 0)
{
iprintf("No\n");
if (choiceBox("Try installing anyway?") == NO)
goto error;
}
else
{
iprintf("Yes\n");
}
}
//Create title directory
char titleID[8+1];