Forráskód Böngészése

Disable the HIDAPI Wii driver by default as it doesn't work with the dolphinbar

Sam Lantinga 2 éve
szülő
commit
efdb390caa
2 módosított fájl, 5 hozzáadás és 1 törlés
  1. 1 1
      include/SDL_hints.h
  2. 4 0
      src/joystick/hidapi/SDL_hidapi_wii.c

+ 1 - 1
include/SDL_hints.h

@@ -872,7 +872,7 @@ extern "C" {
  *    "0"       - HIDAPI driver is not used
  *    "1"       - HIDAPI driver is used
  *
- *  The default is the value of SDL_HINT_JOYSTICK_HIDAPI
+ *  This driver doesn't work with the dolphinbar, so the default is SDL_FALSE for now.
  */
 #define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII"
 

+ 4 - 0
src/joystick/hidapi/SDL_hidapi_wii.c

@@ -170,9 +170,13 @@ HIDAPI_DriverWii_UnregisterHints(SDL_HintCallback callback, void *userdata)
 static SDL_bool
 HIDAPI_DriverWii_IsEnabled(void)
 {
+#if 1 /* This doesn't work with the dolphinbar, so don't enable by default right now */
+    return SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI_WII, SDL_FALSE);
+#else
     return SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI_WII,
                SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI,
                    SDL_HIDAPI_DEFAULT));
+#endif
 }
 
 static SDL_bool