mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-08 04:18:14 +00:00
joystick: Fix linker error when building without virtual joystick support
SDL_VIRTUAL_JoystickDriver was referenced outside an #ifdef when setting is_virtual, which caused a linker error. I modified it so that is_virtual is set to false if virtual joystick support is not enabled.
This commit is contained in:

committed by
Sam Lantinga

parent
71bd25a893
commit
219cb1a59d
@@ -1142,7 +1142,11 @@ SDL_Joystick *SDL_OpenJoystick(SDL_JoystickID instance_id)
|
|||||||
joystick->attached = true;
|
joystick->attached = true;
|
||||||
joystick->led_expiration = SDL_GetTicks();
|
joystick->led_expiration = SDL_GetTicks();
|
||||||
joystick->battery_percent = -1;
|
joystick->battery_percent = -1;
|
||||||
|
#ifdef SDL_JOYSTICK_VIRTUAL
|
||||||
joystick->is_virtual = (driver == &SDL_VIRTUAL_JoystickDriver);
|
joystick->is_virtual = (driver == &SDL_VIRTUAL_JoystickDriver);
|
||||||
|
#else
|
||||||
|
joystick->is_virtual = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!driver->Open(joystick, device_index)) {
|
if (!driver->Open(joystick, device_index)) {
|
||||||
SDL_SetObjectValid(joystick, SDL_OBJECT_TYPE_JOYSTICK, false);
|
SDL_SetObjectValid(joystick, SDL_OBJECT_TYPE_JOYSTICK, false);
|
||||||
|
Reference in New Issue
Block a user