diff options
| author | Reiko Asakura | 2020-02-12 21:48:14 -0500 |
|---|---|---|
| committer | Reiko Asakura | 2020-02-12 21:48:14 -0500 |
| commit | 014fe2d9f658ec6a3efa8f482f2578138de0c7cb (patch) | |
| tree | e91722377431d14d7bc702651b68a68807553a3a | |
| parent | Transition to DolceSDK (diff) | |
| download | vds-libraries-014fe2d9f658ec6a3efa8f482f2578138de0c7cb.tar.gz | |
Fix documentation error in psp2/registrymgr.h
| -rw-r--r-- | include/user/registrymgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user/registrymgr.h b/include/user/registrymgr.h index cc363b5..dbf4946 100644 --- a/include/user/registrymgr.h +++ b/include/user/registrymgr.h @@ -59,11 +59,11 @@ int sceRegMgrSetKeyBin(const char *category, const char *name, void *buf, int si * * @param category - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) * @param name - Name of the key - * @param buf - Pointer to an int buffer to hold the value + * @param value - Value to set to * * @return 0 on success, < 0 on error */ -int sceRegMgrSetKeyInt(const char* category, const char* name, int buf); +int sceRegMgrSetKeyInt(const char* category, const char* name, int value); /** * Set a key's information by category and name |
