From bf9001026399743041ba2fa4c50292a1321f0a84 Mon Sep 17 00:00:00 2001 From: Joel16 Date: Tue, 5 Jun 2018 21:13:21 -0500 Subject: [PATCH] Remove 'or 5' --- nx/include/switch/services/ns.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/ns.h b/nx/include/switch/services/ns.h index 0d9c103c..a67cb802 100644 --- a/nx/include/switch/services/ns.h +++ b/nx/include/switch/services/ns.h @@ -21,14 +21,14 @@ Result nsGetApplicationControlData(u8 flag, u64 titleID, NsApplicationControlDat /** * @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. */ Result nsGetTotalSpaceSize(FsStorageId storage_id, u64 *size); /** * @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. */ Result nsGetFreeSpaceSize(FsStorageId storage_id, u64 *size);