From 04582a9dc0e8d2587a9546318f9577e6bb88b0d4 Mon Sep 17 00:00:00 2001 From: TheOfficialFloW Date: Tue, 17 Apr 2018 19:06:34 +0200 Subject: Fixed wrong enum --- include/user/compat.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/user/compat.h b/include/user/compat.h index a7e2283..9a4786e 100644 --- a/include/user/compat.h +++ b/include/user/compat.h @@ -11,8 +11,9 @@ extern "C" { #endif typedef enum SceCompatCacheMode { - SCE_COMPAT_CACHE_NONE = 1, - SCE_COMPAT_CACHE_INVALIDATE = 2 + SCE_COMPAT_CACHE_NONE = 0, + SCE_COMPAT_CACHE_INVALIDATE = 1, + SCE_COMPAT_CACHE_WRITEBACK = 2 } SceCompatCacheMode; typedef enum SceCompatPeripheralMode { @@ -105,7 +106,7 @@ int sceCompatSetSuspendSema(SceUID semaid1, SceUID semaid2); int sceCompatSuspendResume(int unk); /** - * Cache invalidate + * Cache operation * * @param[in] mode - One of ::SceCompatCacheMode * @param[in] addr - Address -- cgit v1.2.3