From da87f37d26e7ee18307d2aee794f851b51af48d7 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Wed, 6 Apr 2016 16:42:08 +0200 Subject: [PATCH] Properly unmount images when deinitializing --- source/fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/fs.c b/source/fs.c index fa16d94..3964918 100644 --- a/source/fs.c +++ b/source/fs.c @@ -42,6 +42,7 @@ bool InitExtFS() { } void DeinitExtFS() { + MountImage(NULL); for (u32 i = NORM_FS; i > 0; i--) { if (fs_mounted[i]) { char fsname[8];