Removing some more references to SDL 1.3

This commit is contained in:
Sam Lantinga 2012-01-22 17:26:45 -05:00
parent d71e0546a9
commit 3ad2c65336
12 changed files with 14 additions and 212 deletions

View file

@ -26,10 +26,10 @@ main(int argc, char *argv[])
SDL_version compiled;
SDL_version linked;
#if SDL_VERSION_ATLEAST(1, 3, 0)
printf("Compiled with SDL 1.3 or newer\n");
#if SDL_VERSION_ATLEAST(2, 0, 0)
printf("Compiled with SDL 2.0 or newer\n");
#else
printf("Compiled with SDL older than 1.3\n");
printf("Compiled with SDL older than 2.0\n");
#endif
SDL_VERSION(&compiled);
printf("Compiled version: %d.%d.%d.%d (%s)\n",