From 9218e2ac9435e545b59f1eb65c4bbefc206da272 Mon Sep 17 00:00:00 2001 From: Ian Date: Sat, 26 Nov 2022 17:17:49 -0500 Subject: [PATCH] Remove broken SDL version check we love not having access to stdout :^) --- source/main_sdl.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/main_sdl.c b/source/main_sdl.c index 3fb2bb6..e91bae7 100644 --- a/source/main_sdl.c +++ b/source/main_sdl.c @@ -74,11 +74,6 @@ static void Sys_InitSDL (void) { /*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); } - 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(0) < 0) {