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() int create_config_entry()
{ {
if (!sd_mount())
return 1;
char lbuf[64]; char lbuf[64];
FIL fp; FIL fp;
bool mainIniFound = false; bool mainIniFound = false;
@ -151,7 +148,6 @@ int create_config_entry()
} }
f_close(&fp); f_close(&fp);
sd_end();
return 0; return 0;
} }