Fix writing in drives A: / B:

Thanks @AuroraWright for finding this bug
This commit is contained in:
d0k3 2017-09-09 19:12:28 +02:00
parent 78cc747861
commit 343f1182b9

View File

@ -5,8 +5,8 @@
#include "image.h" #include "image.h"
#include "ff.h" #include "ff.h"
// don't use this area for anything else! // FATFS filesystem objects (x10)
static FATFS* fs = (FATFS*) 0x20316000; static FATFS fs[NORM_FS];
// currently open file systems // currently open file systems
static bool fs_mounted[NORM_FS] = { false }; static bool fs_mounted[NORM_FS] = { false };