Remove 'or 5'

This commit is contained in:
Joel16 2018-06-05 21:13:21 -05:00
parent b69f63eb4e
commit bf90010263

View File

@ -21,14 +21,14 @@ Result nsGetApplicationControlData(u8 flag, u64 titleID, NsApplicationControlDat
/** /**
* @brief Returns the total storage capacity (used + free) from content manager services. * @brief Returns the total storage capacity (used + free) from content manager services.
* @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard or 5) * @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard)
* @param size Pointer to output the total storage size to. * @param size Pointer to output the total storage size to.
*/ */
Result nsGetTotalSpaceSize(FsStorageId storage_id, u64 *size); Result nsGetTotalSpaceSize(FsStorageId storage_id, u64 *size);
/** /**
* @brief Returns the available storage capacity from content manager services. * @brief Returns the available storage capacity from content manager services.
* @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard or 5) * @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard)
* @param size Pointer to output the free storage size to. * @param size Pointer to output the free storage size to.
*/ */
Result nsGetFreeSpaceSize(FsStorageId storage_id, u64 *size); Result nsGetFreeSpaceSize(FsStorageId storage_id, u64 *size);