mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-08-30 18:41:38 +00:00
Rename SDL_atomic_t to SDL_AtomicInt
This commit is contained in:
committed by
Sam Lantinga
parent
8994878767
commit
d0c4849d0b
@@ -41,8 +41,8 @@ typedef struct SDL_HIDAPI_RumbleRequest
|
||||
|
||||
typedef struct SDL_HIDAPI_RumbleContext
|
||||
{
|
||||
SDL_atomic_t initialized;
|
||||
SDL_atomic_t running;
|
||||
SDL_AtomicInt initialized;
|
||||
SDL_AtomicInt running;
|
||||
SDL_Thread *thread;
|
||||
SDL_sem *request_sem;
|
||||
SDL_HIDAPI_RumbleRequest *requests_head;
|
||||
|
||||
@@ -71,7 +71,7 @@ typedef struct SDL_HIDAPI_Device
|
||||
void *context;
|
||||
SDL_mutex *dev_lock;
|
||||
SDL_hid_device *dev;
|
||||
SDL_atomic_t rumble_pending;
|
||||
SDL_AtomicInt rumble_pending;
|
||||
int num_joysticks;
|
||||
SDL_JoystickID *joysticks;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user