diff options
author | Brian Paul <[email protected]> | 2010-02-17 09:02:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-17 09:02:33 -0700 |
commit | 0583c29313a4bcd01cc8d30846c815cdc775cb16 (patch) | |
tree | cda05840149a99ea4b1173d52d469950ec7af676 /progs | |
parent | 5b392ff49ab6be3947b457feafdbb72463fd0686 (diff) |
progs/demos: update GL version test to accept GL 3.x
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/fslight.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/demos/fslight.c b/progs/demos/fslight.c index 395b7caa2c1..91a5a801327 100644 --- a/progs/demos/fslight.c +++ b/progs/demos/fslight.c @@ -467,8 +467,8 @@ Init(void) const char *version; version = (const char *) glGetString(GL_VERSION); - if (version[0] != '2' || version[1] != '.') { - printf("This program requires OpenGL 2.x, found %s\n", version); + if (version[0] == '1') { + printf("This program requires OpenGL 2.x or higher, found %s\n", version); exit(1); } |