Просмотр исходного кода

Allow other applications to open controllers on macOS

Sam Lantinga 2 лет назад
Родитель
Сommit
fa41ece65f
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      src/hidapi/SDL_hidapi.c

+ 4 - 0
src/hidapi/SDL_hidapi.c

@@ -1195,6 +1195,10 @@ int SDL_hid_init(void)
         return -1;
         return -1;
     }
     }
 
 
+#ifdef __MACOS__
+    hid_darwin_set_open_exclusive(0);
+#endif
+
     ++SDL_hidapi_refcount;
     ++SDL_hidapi_refcount;
     return 0;
     return 0;
 }
 }