mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
fusee: fix emummc multipart device
This commit is contained in:
parent
1671c04e24
commit
ec4d078d6d
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ int emudev_mount_device_multipart(const char *name, const device_partition_t *de
|
|||
}
|
||||
|
||||
/* Invalid number of parts. */
|
||||
if (num_parts <= 1) {
|
||||
if (num_parts < 1) {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue