Sam Lantinga 2022-12-27 10:35:53 -08:00
parent 960e9044b3
commit 701e965235
8 changed files with 20 additions and 20 deletions

View file

@ -28,7 +28,7 @@
#include "SDL_sensor_c.h"
/* The SDL sensor structure */
struct _SDL_Sensor
struct SDL_Sensor
{
SDL_SensorID instance_id; /* Device instance, monotonically increasing from 0 */
char *name; /* Sensor name - system dependent */
@ -43,7 +43,7 @@ struct _SDL_Sensor
int ref_count; /* Reference count for multiple opens */
struct _SDL_Sensor *next; /* pointer to next sensor we have allocated */
struct SDL_Sensor *next; /* pointer to next sensor we have allocated */
};
typedef struct _SDL_SensorDriver