summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2012-01-22 17:26:45 -0500
committerSam Lantinga <slouken@libsdl.org>2012-01-22 17:26:45 -0500
commit3edabb1fa5d6ef05930217ed97c665517d806771 (patch)
tree2295d76da6ee3a39b2d6e94c86bfa61695804661 /test
parent71f3c2743586236e5c4d1797c820e1002b46ada0 (diff)
Removing some more references to SDL 1.3
Diffstat (limited to 'test')
-rw-r--r--test/README2
-rw-r--r--test/testime.c2
-rw-r--r--test/testver.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/test/README b/test/README
index 38874f79..0c20e12a 100644
--- a/test/README
+++ b/test/README
@@ -15,7 +15,7 @@ These are test programs for the SDL library:
testfile Tests RWops layer
testgamma Tests video device gamma ramp
testgl A very simple example of using OpenGL with SDL
- testgl2 An even simpler example using the SDL 1.3 API
+ testgl2 An even simpler example using the SDL 2.0 API
testhread Hacked up test of multi-threading
testiconv Tests international string conversion
testjoystick List joysticks and watch joystick events
diff --git a/test/testime.c b/test/testime.c
index 8faab60c..7c2efe68 100644
--- a/test/testime.c
+++ b/test/testime.c
@@ -9,7 +9,7 @@
including commercial applications, and to alter it and redistribute it
freely.
*/
-/* A simple program to test the Input Method support in the SDL library (1.3+) */
+/* A simple program to test the Input Method support in the SDL library (2.0+) */
#include <stdlib.h>
#include <stdio.h>
diff --git a/test/testver.c b/test/testver.c
index 7420edb0..7f2a52b9 100644
--- a/test/testver.c
+++ b/test/testver.c
@@ -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",