summaryrefslogtreecommitdiff
path: root/include/kernel/lowio/iftu.h
diff options
context:
space:
mode:
authorReiko Asakura2020-09-19 16:13:58 -0400
committerReiko Asakura2020-09-19 16:13:58 -0400
commit4b52330f2df74aa1f48551973fd0d8f851123f42 (patch)
tree33d05d23766c42367d31cc15313ddb04be6c7f8b /include/kernel/lowio/iftu.h
parentAdd SceKernelForMono functions (diff)
downloadvds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz
Make errors signed
Diffstat (limited to 'include/kernel/lowio/iftu.h')
-rw-r--r--include/kernel/lowio/iftu.h8
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 {