diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-06-05 13:50:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-05 13:50:11 +0200 |
| commit | e233a30ffc2d10c682f655b7fc38788e2f5ddeb7 (patch) | |
| tree | 49da8bd750a04b9aa76fc0fa285b57c93202b24a | |
| parent | d3c4061c425abb549b3f5710caf3876020d60771 (diff) | |
| parent | 98e6a95e8708e67db44bb6d5bd91ddb32af74e80 (diff) | |
Merge pull request #12834 from jordan-woyak/sdcard-sfd
FatFsUtil: Generate a non-partitioned image in our folder-to-sdcard conversion.
| -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) |
