From 10bbf9d1da5d4a98fa142ce2995a7fc44106e37e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 26 May 2024 12:21:55 -0400 Subject: [PATCH] Fixed SDL_PenCapabilityFlags from Uint64 to Uint32. --- include/SDL3/SDL_pen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_pen.h b/include/SDL3/SDL_pen.h index 65eb0c6865..41472973be 100644 --- a/include/SDL3/SDL_pen.h +++ b/include/SDL3/SDL_pen.h @@ -112,7 +112,7 @@ typedef enum SDL_PenAxis * * \since This datatype is available since SDL 3.0.0. */ -typedef Uint64 SDL_PenCapabilityFlags; +typedef Uint32 SDL_PenCapabilityFlags; #define SDL_PEN_DOWN_MASK SDL_PEN_CAPABILITY(SDL_PEN_FLAG_DOWN_BIT_INDEX) /**< Pen tip is currently touching the drawing surface. */ #define SDL_PEN_INK_MASK SDL_PEN_CAPABILITY(SDL_PEN_FLAG_INK_BIT_INDEX) /**< Pen has a regular drawing tip (SDL_GetPenCapabilities). For events (SDL_PenButtonEvent, SDL_PenMotionEvent, SDL_GetPenStatus) this flag is mutually exclusive with SDL_PEN_ERASER_MASK . */