diff options
author | Reiko Asakura | 2021-03-08 19:05:58 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-08 19:05:58 -0500 |
commit | 23d49e774e161418f915fe2cf67e2357e371184c (patch) | |
tree | 9c27ca9ad729d852e722bd5f63b9a9fb567fcf4c | |
parent | Fix SceDrmBridge names (diff) | |
download | vds-libraries-23d49e774e161418f915fe2cf67e2357e371184c.tar.gz |
Fix type for user sceSblACMgrIsGameProgram
sceSblACMgrIsGameProgram is an export of SceLibKernel, which calls
_sceSblACMgrIsGameProgram which is an export of SceSblACMgr.
-rw-r--r-- | include/user/sblacmgr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/user/sblacmgr.h b/include/user/sblacmgr.h index 19da6bd..17bd258 100644 --- a/include/user/sblacmgr.h +++ b/include/user/sblacmgr.h @@ -5,11 +5,13 @@ #ifndef _VDSUITE_USER_SBLACMGR_H #define _VDSUITE_USER_SBLACMGR_H +#include <scetypes.h> + #ifdef __cplusplus extern "C" { #endif -int _sceSblACMgrIsGameProgram(void); +SceInt32 sceSblACMgrIsGameProgram(SceInt32 *result); #ifdef __cplusplus } |