mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-22 12:21:18 +00:00
fusee: relax emummc multipart check for FAT32
This commit is contained in:
parent
542833866e
commit
73d904036d
1 changed files with 2 additions and 1 deletions
|
@ -653,7 +653,8 @@ int nxfs_mount_emummc_file(const char *emummc_path, int num_parts, uint64_t part
|
||||||
is_exfat = (rc == 1);
|
is_exfat = (rc == 1);
|
||||||
|
|
||||||
/* Reject single part in FAT32. */
|
/* Reject single part in FAT32. */
|
||||||
if (!is_exfat && (num_parts <= 1)) {
|
/* NOTE: This check has no effect in the current design. */
|
||||||
|
if (!is_exfat && (num_parts < 1)) {
|
||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue