mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
FatFsUtil: Generate a non-partitioned image in our folder-to-sdcard conversion.
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user