diff options
author | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
commit | 4b52330f2df74aa1f48551973fd0d8f851123f42 (patch) | |
tree | 33d05d23766c42367d31cc15313ddb04be6c7f8b /include/user/trigger_util.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/user/trigger_util.h')
-rw-r--r-- | include/user/trigger_util.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/user/trigger_util.h b/include/user/trigger_util.h index 3ac6e09..30eaa06 100644 --- a/include/user/trigger_util.h +++ b/include/user/trigger_util.h @@ -30,12 +30,12 @@ typedef enum SceTriggerUtilDays { /** * Errors */ -#define SCE_TRIGGER_UTIL_ERROR_BUSY 0x80103601 -#define SCE_TRIGGER_UTIL_ERROR_NOT_FOUND_USER 0x80103610 -#define SCE_TRIGGER_UTIL_ERROR_NOT_FOUND_SYSTEM 0x80103612 -#define SCE_TRIGGER_UTIL_ERROR_NOT_REGISTERED 0x80103620 -#define SCE_TRIGGER_UTIL_ERROR_EVENT_TYPE_MISMATCH 0x80103623 -#define SCE_TRIGGER_UTIL_ERROR_INVALID_ARG 0x80103650 +#define SCE_TRIGGER_UTIL_ERROR_BUSY ((int)0x80103601) +#define SCE_TRIGGER_UTIL_ERROR_NOT_FOUND_USER ((int)0x80103610) +#define SCE_TRIGGER_UTIL_ERROR_NOT_FOUND_SYSTEM ((int)0x80103612) +#define SCE_TRIGGER_UTIL_ERROR_NOT_REGISTERED ((int)0x80103620) +#define SCE_TRIGGER_UTIL_ERROR_EVENT_TYPE_MISMATCH ((int)0x80103623) +#define SCE_TRIGGER_UTIL_ERROR_INVALID_ARG ((int)0x80103650) typedef struct SceTriggerUtilEventParamDaily { // size is 0x50 SceUInt32 ver; |