Removed 1.2.x version checks in these files, SDL 2.0.x should always have these files

This commit is contained in:
Monster Iestyn 2017-09-15 17:15:06 +01:00
parent d2a76ca269
commit 5fb551dd75
2 changed files with 4 additions and 6 deletions

View File

@ -41,10 +41,8 @@
#define NOLOADSO
#endif
#if SDL_VERSION_ATLEAST(1,2,6) && !defined (NOLOADSO)
#include "SDL_loadso.h" // 1.2.6+
#elif !defined (NOLOADSO)
#define NOLOADSO
#ifndef NOLOADSO
#include "SDL_loadso.h"
#endif
#define _CREATE_DLL_ // necessary for Unix AND Windows

View File

@ -88,8 +88,8 @@ void __set_fpscr(long); // in libgcc / kernel's startup.s?
#pragma warning(default : 4214 4244)
#endif
#if SDL_VERSION_ATLEAST(1,2,7) && !defined (DC)
#include "SDL_cpuinfo.h" // 1.2.7 or greater
#ifndef DC
#include "SDL_cpuinfo.h"
#define HAVE_SDLCPUINFO
#endif