From 4b52330f2df74aa1f48551973fd0d8f851123f42 Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Sat, 19 Sep 2020 16:13:58 -0400 Subject: Make errors signed --- include/kernel/lowio/iftu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/kernel/lowio/iftu.h') 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 { -- cgit v1.2.3