mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 13:21:31 +00:00
Removed 1.2.x version checks in these files, SDL 2.0.x should always have these files
This commit is contained in:
parent
d2a76ca269
commit
5fb551dd75
2 changed files with 4 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue