Added missing reserved field in SDL_CameraDeviceEvent (thanks @Saalvage!)

This commit is contained in:
Sam Lantinga 2024-03-14 08:51:48 -07:00
parent 9bef331dc8
commit 442073f379
1 changed files with 1 additions and 0 deletions

View File

@ -560,6 +560,7 @@ typedef struct SDL_AudioDeviceEvent
typedef struct SDL_CameraDeviceEvent
{
SDL_EventType type; /**< ::SDL_EVENT_CAMERA_DEVICE_ADDED, ::SDL_EVENT_CAMERA_DEVICE_REMOVED, ::SDL_EVENT_CAMERA_DEVICE_APPROVED, ::SDL_EVENT_CAMERA_DEVICE_DENIED */
Uint32 reserved;
Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */
SDL_CameraDeviceID which; /**< SDL_CameraDeviceID for the device being added or removed or changing */
Uint8 padding1;