From 55725cf5ec61ac9b3685bc4952095475da5c9178 Mon Sep 17 00:00:00 2001 From: Princess of Sleeping Date: Fri, 26 Jun 2020 21:32:02 +0900 Subject: Fix many args (#451) Changes document and variable types--- include/kernel/idstorage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/kernel/idstorage.h') diff --git a/include/kernel/idstorage.h b/include/kernel/idstorage.h index a28e310..5c98e66 100644 --- a/include/kernel/idstorage.h +++ b/include/kernel/idstorage.h @@ -13,7 +13,7 @@ extern "C" { * * @return 0 on success, < 0 on error. */ -int sceIdStorageReadLeaf(int leafnum, void *buf); +int sceIdStorageReadLeaf(SceSize leafnum, void *buf); /** * @param[in] leafnum - 0x0 ~ 0x80 / leafnum > 0x80 = error @@ -21,7 +21,7 @@ int sceIdStorageReadLeaf(int leafnum, void *buf); * * @return 0 on success, < 0 on error. */ -int sceIdStorageWriteLeaf(int leafnum, const void *buf); +int sceIdStorageWriteLeaf(SceSize leafnum, const void *buf); #ifdef __cplusplus } -- cgit v1.2.3