mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #12834 from jordan-woyak/sdcard-sfd
FatFsUtil: Generate a non-partitioned image in our folder-to-sdcard conversion.
This commit is contained in:
commit
e233a30ffc
@ -553,7 +553,7 @@ bool SyncSDFolderToSDImage(const std::function<bool()>& cancelled, bool determin
|
|||||||
}
|
}
|
||||||
|
|
||||||
MKFS_PARM options = {};
|
MKFS_PARM options = {};
|
||||||
options.fmt = FM_FAT32;
|
options.fmt = FM_FAT32 | FM_SFD;
|
||||||
options.n_fat = 0; // Number of FATs: automatic
|
options.n_fat = 0; // Number of FATs: automatic
|
||||||
options.align = 1; // Alignment of the data region (in sectors)
|
options.align = 1; // Alignment of the data region (in sectors)
|
||||||
options.n_root = 0; // Number of root directory entries: automatic (and unused for FAT32)
|
options.n_root = 0; // Number of root directory entries: automatic (and unused for FAT32)
|
||||||
|
Loading…
Reference in New Issue
Block a user