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/kernel/lowio/iftu.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/kernel/lowio/iftu.h')
-rw-r--r-- | include/kernel/lowio/iftu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/kernel/lowio/iftu.h b/include/kernel/lowio/iftu.h index a03d221..9580219 100644 --- a/include/kernel/lowio/iftu.h +++ b/include/kernel/lowio/iftu.h @@ -8,10 +8,10 @@ extern "C" { #endif typedef enum SceIftuErrorCode { - SCE_IFTU_ERROR_INVALID_PLANE = 0x803F0700, - SCE_IFTU_ERROR_INVALID_PARAM = 0x803F0701, - SCE_IFTU_ERROR_INVALID_PIXELFORMAT = 0x803F0703, - SCE_IFTU_ERROR_PLANE_BUSY = 0x803F0704, + SCE_IFTU_ERROR_INVALID_PLANE = (int)0x803F0700, + SCE_IFTU_ERROR_INVALID_PARAM = (int)0x803F0701, + SCE_IFTU_ERROR_INVALID_PIXELFORMAT = (int)0x803F0703, + SCE_IFTU_ERROR_PLANE_BUSY = (int)0x803F0704, } SceIftuErrorCode; typedef enum SceIftuPixelformat { |