(retroarch-joyconfig-griffin.c) Add C99 checks

This commit is contained in:
twinaphex 2015-09-22 16:43:59 +02:00
parent 40ca0baa07
commit 571c49ca87

View File

@ -46,7 +46,7 @@
#include "../input/drivers_joypad/parport_joypad.c"
#endif
#ifndef __STDC_C89__
#if __cplusplus || __STDC_VERSION__ >= 199901L
#if defined(HAVE_SDL) || defined(HAVE_SDL2)
#include "../input/drivers_joypad/sdl_joypad.c"
#endif
@ -65,7 +65,7 @@
#include "../libretro-common/rthreads/rthreads.c"
#ifndef __STDC_C89__
#if __cplusplus || __STDC_VERSION__ >= 199901L
#ifdef HAVE_LIBUSB
#include "../input/drivers_hid/libusb_hid.c"