diff options
Diffstat (limited to '3rdparty/SDL2/include/SDL_rwops.h')
-rw-r--r-- | 3rdparty/SDL2/include/SDL_rwops.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/3rdparty/SDL2/include/SDL_rwops.h b/3rdparty/SDL2/include/SDL_rwops.h index f460ae7d408..1ad3ac406ad 100644 --- a/3rdparty/SDL2/include/SDL_rwops.h +++ b/3rdparty/SDL2/include/SDL_rwops.h @@ -39,12 +39,12 @@ extern "C" { #endif /* RWops Types */ -#define SDL_RWOPS_UNKNOWN 0 /* Unknown stream type */ -#define SDL_RWOPS_WINFILE 1 /* Win32 file */ -#define SDL_RWOPS_STDFILE 2 /* Stdio file */ -#define SDL_RWOPS_JNIFILE 3 /* Android asset */ -#define SDL_RWOPS_MEMORY 4 /* Memory stream */ -#define SDL_RWOPS_MEMORY_RO 5 /* Read-Only memory stream */ +#define SDL_RWOPS_UNKNOWN 0U /* Unknown stream type */ +#define SDL_RWOPS_WINFILE 1U /* Win32 file */ +#define SDL_RWOPS_STDFILE 2U /* Stdio file */ +#define SDL_RWOPS_JNIFILE 3U /* Android asset */ +#define SDL_RWOPS_MEMORY 4U /* Memory stream */ +#define SDL_RWOPS_MEMORY_RO 5U /* Read-Only memory stream */ /** * This is the read/write operation structure -- very basic. |