fix typo and wrap out values

This commit is contained in:
HookedBehemoth 2020-01-14 03:28:17 +01:00
parent d23427a24a
commit a33bd0f819
2 changed files with 7 additions and 5 deletions

View File

@ -62,7 +62,7 @@ Result capsaStorageCopyAlbumFile(const CapsAlbumFileId *file_id, CapsAlbumStorag
/**
* @brief Gets the mount status of the specified \ref CapsAlbumStorage.
* @param[in] storage \ref CapsAlbumStorage
* @param[out] is_mounted Boolean over wether the storage is mounted or not.
* @param[out] is_mounted Boolean over whether the storage is mounted or not.
*/
Result capsaIsAlbumMounted(CapsAlbumStorage storage, bool *is_mounted);
@ -185,7 +185,7 @@ Result capsaGetAlbumUsage16(CapsAlbumStorage storage, CapsAlbumUsage16 *out);
/**
* @brief Returns the start and end of the Applet Id range.
* @note Only available on [6.0.0+].
* @param[out] success Returns bool over wether the call was handled or not.
* @param[out] success Returns bool over whether the call was handled or not.
* @param[out] min Mimimum applet id. Always 0x0100000000001000
* @param[out] max Maximum applet id. Always 0x0100000000001FFF
*/

View File

@ -196,9 +196,11 @@ Result capsaGetMinMaxAppletId(bool *success, u64* min, u64* max) {
.buffer_attrs = { SfBufferAttr_HipcMapAlias | SfBufferAttr_Out | SfBufferAttr_HipcMapTransferAllowsNonSecure, },
.buffers = { { app_ids, sizeof(app_ids) }, },
);
*min = app_ids[0];
*max = app_ids[1];
*success = out.success;
if (R_SUCCEEDED(rc)) {
if (min) *min = app_ids[0];
if (max) *max = app_ids[1];
if (success) *success = out.success;
}
return rc;
}