mirror of
https://github.com/rvtr/TDT.git
synced 2025-10-31 13:51:07 -04:00
Install anyway?
This commit is contained in:
parent
370be53528
commit
b5b2c8feb2
@ -341,10 +341,13 @@ void install(Menu* m)
|
||||
if (getDsiFree() < fileSize)
|
||||
{
|
||||
iprintf("No\n");
|
||||
goto error;
|
||||
if (choiceBox("Try installing anyway?") == NO)
|
||||
goto error;
|
||||
}
|
||||
else
|
||||
{
|
||||
iprintf("Yes\n");
|
||||
}
|
||||
|
||||
iprintf("Yes\n");
|
||||
}
|
||||
|
||||
//Menu slot check
|
||||
@ -354,10 +357,13 @@ void install(Menu* m)
|
||||
if (getMenuSlotsFree() <= 0)
|
||||
{
|
||||
iprintf("No\n");
|
||||
goto error;
|
||||
if (choiceBox("Try installing anyway?") == NO)
|
||||
goto error;
|
||||
}
|
||||
|
||||
iprintf("Yes\n");
|
||||
else
|
||||
{
|
||||
iprintf("Yes\n");
|
||||
}
|
||||
}
|
||||
|
||||
//Create title directory
|
||||
|
||||
Loading…
Reference in New Issue
Block a user