Add missing SDL2.h header.

This commit is contained in:
Yamagi Burmeister 2017-12-17 08:34:42 +01:00
parent 60b444834e
commit 6129e902b0

View file

@ -18,7 +18,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// r_misc.c
#include "SDL.h"
#ifdef SDL2
#include <SDL2/SDL.h>
#else // SDL1.2
#include <SDL/SDL.h>
#endif //SDL2
#include "r_local.h"
#define NUM_MIPS 4