mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
83883cee45
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5934 8ced0084-cf51-0410-be5f-012b33b47a6e
22 lines
501 B
C
22 lines
501 B
C
#include <sys/param.h>
|
|
|
|
#if defined __APPLE__
|
|
#include "include/SDL_config_macosx.h"
|
|
#elif defined BSD4_4
|
|
#include "SDL/SDL_config_bsd.h"
|
|
#elif defined __linux__
|
|
#include "SDL/SDL_config_linux.h"
|
|
#endif
|
|
|
|
#define SDL_AUDIO_DISABLED 1
|
|
#define SDL_CDROM_DISABLED 1
|
|
#define SDL_CPUINFO_DISABLED 1
|
|
#define SDL_EVENTS_DISABLED 1
|
|
#define SDL_FILE_DISABLED 1
|
|
#undef SDL_JOYSTICK_DISABLED
|
|
#define SDL_LOADSO_DISABLED 1
|
|
#define SDL_THREADS_DISABLED 1
|
|
#define SDL_TIMERS_DISABLED 1
|
|
#define SDL_VIDEO_DISABLED 1
|
|
|