mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 06:34:35 +00:00
SDL_SendJoystickVirtualSensorDataInner(): Fix max_sensor_events increment
This commit is contained in:
parent
de742e9f9a
commit
d9c20cfd0a
1 changed files with 1 additions and 1 deletions
|
|
@ -471,7 +471,7 @@ bool SDL_SendJoystickVirtualSensorDataInner(SDL_Joystick *joystick, SDL_SensorTy
|
|||
return false;
|
||||
}
|
||||
hwdata->sensor_events = sensor_events;
|
||||
hwdata->max_sensor_events = hwdata->max_sensor_events;
|
||||
hwdata->max_sensor_events = new_max_sensor_events;
|
||||
}
|
||||
|
||||
VirtualSensorEvent *event = &hwdata->sensor_events[hwdata->num_sensor_events++];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue