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/bgapputil.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/user/bgapputil.h')
-rw-r--r-- | include/user/bgapputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user/bgapputil.h b/include/user/bgapputil.h index f35e9ad..e3b0a5e 100644 --- a/include/user/bgapputil.h +++ b/include/user/bgapputil.h @@ -8,7 +8,7 @@ extern "C" { /** * Errors */ -#define SCE_BGAPPUTIL_ERROR_INVALID_ARG 0x80106501 +#define SCE_BGAPPUTIL_ERROR_INVALID_ARG ((int)0x80106501) /** * Start BG application (eboot2.bin) |