diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2024-06-04 15:14:32 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2024-06-04 15:17:05 -0500 |
| commit | 98e6a95e8708e67db44bb6d5bd91ddb32af74e80 (patch) | |
| tree | 91078ba1f3baf71f6d41898f310cc85bd58c4b71 /Source/Core | |
| parent | c04460d88b4f18d4b42dc81359aae1399776d2b0 (diff) | |
FatFsUtil: Generate a non-partitioned image in our folder-to-sdcard conversion.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/FatFsUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FatFsUtil.cpp b/Source/Core/Common/FatFsUtil.cpp index 88d746e8ea..ffac0fc6c9 100644 --- a/Source/Core/Common/FatFsUtil.cpp +++ b/Source/Core/Common/FatFsUtil.cpp @@ -553,7 +553,7 @@ bool SyncSDFolderToSDImage(const std::function<bool()>& cancelled, bool determin } MKFS_PARM options = {}; - options.fmt = FM_FAT32; + options.fmt = FM_FAT32 | FM_SFD; options.n_fat = 0; // Number of FATs: automatic options.align = 1; // Alignment of the data region (in sectors) options.n_root = 0; // Number of root directory entries: automatic (and unused for FAT32) |
