diff --git a/libstratosphere/source/fs/fs_sd_card.cpp b/libstratosphere/source/fs/fs_sd_card.cpp index 66c22c2c..576116ef 100644 --- a/libstratosphere/source/fs/fs_sd_card.cpp +++ b/libstratosphere/source/fs/fs_sd_card.cpp @@ -43,10 +43,9 @@ namespace ams::fs { } - Result MountSdCard(const char *name) { /* Validate the mount name. */ - R_TRY(impl::CheckMountName(name)); + R_TRY(impl::CheckMountNameAllowingReserved(name)); /* Open the SD card. This uses libnx bindings. */ FsFileSystem fs;