mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-06 18:06:26 +00:00
Removed leading underscore in structure names
Fixes https://github.com/libsdl-org/SDL/issues/6856 Closes https://github.com/libsdl-org/SDL/pull/6914 Closes https://github.com/libsdl-org/SDL/pull/6915 Closes https://github.com/libsdl-org/SDL/pull/6916 Closes https://github.com/libsdl-org/SDL/pull/6917 Closes https://github.com/libsdl-org/SDL/pull/6918 Closes https://github.com/libsdl-org/SDL/pull/6919
This commit is contained in:
@@ -38,7 +38,7 @@ struct haptic_effect
|
||||
/*
|
||||
* The real SDL_Haptic struct.
|
||||
*/
|
||||
struct _SDL_Haptic
|
||||
struct SDL_Haptic
|
||||
{
|
||||
Uint8 index; /* Stores index it is attached to */
|
||||
|
||||
@@ -53,7 +53,7 @@ struct _SDL_Haptic
|
||||
|
||||
int rumble_id; /* ID of rumble effect for simple rumble API. */
|
||||
SDL_HapticEffect rumble_effect; /* Rumble effect. */
|
||||
struct _SDL_Haptic *next; /* pointer to next haptic we have allocated */
|
||||
struct SDL_Haptic *next; /* pointer to next haptic we have allocated */
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user