1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-05-18 23:03:22 -04:00

Wayland: Fix detection of joysticks after init

Closes #2198
This commit is contained in:
TheBrokenRail 2022-10-07 21:26:21 -04:00 committed by Camilla Löwy
parent f27daa34ad
commit 0b94e1b29b

View File

@ -1095,6 +1095,11 @@ static void inputText(_GLFWwindow* window, uint32_t scancode)
static void handleEvents(double* timeout)
{
#if defined(GLFW_BUILD_LINUX_JOYSTICK)
if (_glfw.joysticksInitialized)
_glfwDetectJoystickConnectionLinux();
#endif
GLFWbool event = GLFW_FALSE;
struct pollfd fds[4] =
{