mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
NX/VITA: Remove Maximum SDL compatibility version
This commit is contained in:
parent
3f55696e09
commit
ce20fd0893
1 changed files with 0 additions and 5 deletions
|
@ -64,11 +64,6 @@ static void Sys_InitSDL (void)
|
||||||
{ /*reject running under older SDL versions */
|
{ /*reject running under older SDL versions */
|
||||||
Sys_Error("You need at least v%d.%d.%d of SDL to run this game.", SDL_MIN_X,SDL_MIN_Y,SDL_MIN_Z);
|
Sys_Error("You need at least v%d.%d.%d of SDL to run this game.", SDL_MIN_X,SDL_MIN_Y,SDL_MIN_Z);
|
||||||
}
|
}
|
||||||
if (SDL_VERSIONNUM(sdl_version->major,sdl_version->minor,sdl_version->patch) >= SDL_NEW_VERSION_REJECT)
|
|
||||||
{ /*reject running under newer (1.3.x) SDL */
|
|
||||||
Sys_Error("Your version of SDL library is incompatible with me.\n"
|
|
||||||
"You need a library version in the line of %d.%d.%d\n", SDL_MIN_X,SDL_MIN_Y,SDL_MIN_Z);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) < 0)
|
if (SDL_Init(SDL_INIT_VIDEO) < 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue