Fix FATfs drive IDs (0=/ext 1=/mnt)

This commit is contained in:
Willy-JL
2024-04-06 23:17:19 +01:00
parent 29c3813f68
commit 9d43b3ccfd

View File

@@ -43,10 +43,12 @@ Storage* storage_app_alloc(void) {
}
#ifndef FURI_RAM_EXEC
storage_mnt_init(&app->storage[ST_MNT]);
storage_int_init(&app->storage[ST_INT]);
#endif
storage_ext_init(&app->storage[ST_EXT]);
#ifndef FURI_RAM_EXEC
storage_mnt_init(&app->storage[ST_MNT]);
#endif
// sd icon gui
app->sd_gui.enabled = false;