diff options
author | Rinnegatamante | 2020-06-30 02:14:22 +0200 |
---|---|---|
committer | GitHub | 2020-06-30 09:14:22 +0900 |
commit | a9e3463fde76f060022448eceb486a01942fa46d (patch) | |
tree | dda6eddcc13a5306843102e880042a46797b8fb9 /include | |
parent | Update modulemgr structs (#453) (diff) | |
download | vds-libraries-a9e3463fde76f060022448eceb486a01942fa46d.tar.gz |
Unify SDK Version constant for all occurrences. (#452)
* Unify SDK Version constant for all occurrences.
* Moved global constants in a separate header.
Diffstat (limited to 'include')
-rw-r--r-- | include/user/sharedfb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/user/sharedfb.h b/include/user/sharedfb.h index a8266c4..1919245 100644 --- a/include/user/sharedfb.h +++ b/include/user/sharedfb.h @@ -2,6 +2,7 @@ #define _PSP2_SHAREDFB_H_ #include <psp2/types.h> +#include <psp2/defs.h> #ifdef __cplusplus extern "C" { @@ -31,7 +32,7 @@ int sceSharedFbGetInfo(SceUID fb_id, SceSharedFbInfo *info); static inline SceUID sceSharedFbOpen(int index) { - return _sceSharedFbOpen(index, 0x03570011); + return _sceSharedFbOpen(index, PSP2_SDK_VERSION); }; #ifdef __cplusplus |