The-Powder-Toy/src/SDLCompat.h

20 lines
281 B
C
Raw Normal View History

#ifdef USE_SDL
#ifdef SDL_INC
#include "SDL2/SDL.h"
#else
#include "SDL.h"
#endif
2016-10-14 08:30:29 -05:00
#ifdef INCLUDE_SYSWM
#if defined(WIN) || defined(LIN)
#ifdef SDL_INC
#include <SDL2/SDL_syswm.h>
#else
#include <SDL_syswm.h>
#endif
2016-10-14 08:30:29 -05:00
#endif // WIN || LIN
#endif // INCLUDE_SYSWM
2016-10-14 08:30:29 -05:00
#endif // USE_SDL