1
0
Эх сурвалжийг харах

SDL_bsdjoystick: fix OpenBSD build error due to -Wundef

(cherry picked from commit 07274fea580db56812da97af4bff784b78a25650)
Ozkan Sezer 1 сар өмнө
parent
commit
7c79649244

+ 1 - 1
src/joystick/bsd/SDL_bsdjoystick.c

@@ -78,7 +78,7 @@
 #include "../SDL_joystick_c.h"
 #include "../hidapi/SDL_hidapijoystick_c.h"
 
-#if defined(__FREEBSD__) || SDL_HAVE_MACHINE_JOYSTICK_H || defined(__FreeBSD_kernel__) || defined(__DragonFly_)
+#if defined(__FREEBSD__) || defined(SDL_HAVE_MACHINE_JOYSTICK_H) || defined(__FreeBSD_kernel__) || defined(__DragonFly_)
 #define SUPPORT_JOY_GAMEPORT
 #endif