Skip to content

Commit

Permalink
Fix FATfs drive IDs (0=/ext 1=/mnt)
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Apr 6, 2024
1 parent 29c3813 commit 9d43b3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion applications/services/storage/storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9d43b3c

Please sign in to comment.