1
0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-15 15:03:06 +00:00

config: do not unmount on exit

Fixes Nyx not found for new users without hekate_ipl.ini
This commit is contained in:
CTCaer 2022-01-29 01:35:09 +02:00
parent 3fdb72ce37
commit 5f337bffd6

View File

@ -44,9 +44,6 @@ void set_default_configuration()
int create_config_entry()
{
if (!sd_mount())
return 1;
char lbuf[64];
FIL fp;
bool mainIniFound = false;
@ -151,7 +148,6 @@ int create_config_entry()
}
f_close(&fp);
sd_end();
return 0;
}