diff options
Diffstat (limited to 'make/wglext.cfg')
-rw-r--r-- | make/wglext.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/wglext.cfg b/make/wglext.cfg index eedcd4d72..822c24ab8 100644 --- a/make/wglext.cfg +++ b/make/wglext.cfg @@ -34,8 +34,8 @@ CustomCCode /* Include the OpenGL headers */ CustomCCode #include <GL/gl.h> CustomCCode #include <GL/wglext.h> -CustomCCode /* This typedef is only needed for VC6 */ -CustomCCode #if _MSC_VER <= 1200 +CustomCCode /* This typedef is apparently needed for compilers before VC8 */ +CustomCCode #if _MSC_VER < 1400 CustomCCode typedef int intptr_t; CustomCCode #endif |