From 532dfea2347d551e6c2ec2c74e32a9dbdfeedb41 Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 27 Aug 2022 10:58:20 +0800 Subject: [PATCH] fixed d5f3f96 from https://gitee.com/zhuzijia/third_party_flutter/pulls/136 fix inspector bug Signed-off-by: peter Change-Id: I90f24b227a04a39824a7d5bf95d14cac02230f5a --- glfw/src/win32_joystick.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glfw/src/win32_joystick.c b/glfw/src/win32_joystick.c index 49f3b871..42a52004 100644 --- a/glfw/src/win32_joystick.c +++ b/glfw/src/win32_joystick.c @@ -667,8 +667,8 @@ void _glfwInitJoysticksWin32(void) "DI: Failed to create interface"); } } - - _glfwDetectJoystickConnectionWin32(); + //The initialization takes a long time on a specific computer + //_glfwDetectJoystickConnectionWin32(); } // Close all opened joystick handles -- Gitee