mirror of
https://github.com/encounter/SDL.git
synced 2025-05-30 03:01:29 +00:00
fix a bug if XINPUTGETBATTERYINFORMATION is nullptr
This commit is contained in:
parent
f42291ce68
commit
cfbeb438c1
@ -338,7 +338,9 @@ RAWINPUT_UpdateXInput()
|
|||||||
xinput_state[user_index].connected = SDL_FALSE;
|
xinput_state[user_index].connected = SDL_FALSE;
|
||||||
}
|
}
|
||||||
xinput_state[user_index].battery.BatteryType = BATTERY_TYPE_UNKNOWN;
|
xinput_state[user_index].battery.BatteryType = BATTERY_TYPE_UNKNOWN;
|
||||||
XINPUTGETBATTERYINFORMATION(user_index, BATTERY_DEVTYPE_GAMEPAD, &xinput_state[user_index].battery);
|
if (XINPUTGETBATTERYINFORMATION) {
|
||||||
|
XINPUTGETBATTERYINFORMATION(user_index, BATTERY_DEVTYPE_GAMEPAD, &xinput_state[user_index].battery);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user