mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-22 03:09:15 +01:00
Create the Nintendont directory if it's missing
This commit is contained in:
parent
74edae1df1
commit
1d7ec570fa
@ -661,8 +661,10 @@ int FeatureSettingsMenu::GetMenuInternal()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// Create the directory if it doesn't exist
|
||||||
|
CreateSubfolder(Settings.NINLoaderPath);
|
||||||
// Rename existing boot.dol file to boot.bak
|
// Rename existing boot.dol file to boot.bak
|
||||||
if(CheckFile(NINUpdatePath))
|
if (CheckFile(NINUpdatePath))
|
||||||
RenameFile(NINUpdatePath, NINUpdatePathBak);
|
RenameFile(NINUpdatePath, NINUpdatePathBak);
|
||||||
|
|
||||||
if (DownloadFileToPath("https://raw.githubusercontent.com/FIX94/Nintendont/master/loader/loader.dol", NINUpdatePath) > 0)
|
if (DownloadFileToPath("https://raw.githubusercontent.com/FIX94/Nintendont/master/loader/loader.dol", NINUpdatePath) > 0)
|
||||||
@ -677,7 +679,7 @@ int FeatureSettingsMenu::GetMenuInternal()
|
|||||||
{
|
{
|
||||||
// Restore backup file if found
|
// Restore backup file if found
|
||||||
RemoveFile(NINUpdatePath);
|
RemoveFile(NINUpdatePath);
|
||||||
if(CheckFile(NINUpdatePathBak))
|
if (CheckFile(NINUpdatePathBak))
|
||||||
RenameFile(NINUpdatePathBak, NINUpdatePath);
|
RenameFile(NINUpdatePathBak, NINUpdatePath);
|
||||||
WindowPrompt(tr("Update Failed"), 0, tr("OK"));
|
WindowPrompt(tr("Update Failed"), 0, tr("OK"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user