aboutsummaryrefslogtreecommitdiffstats
path: root/make/gl-win32.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/gl-win32.cfg')
-rw-r--r--make/gl-win32.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/gl-win32.cfg b/make/gl-win32.cfg
index 98278bd46..96234241c 100644
--- a/make/gl-win32.cfg
+++ b/make/gl-win32.cfg
@@ -27,8 +27,8 @@ CustomCCode #define GL_GLEXT_PROTOTYPES
CustomCCode /* Include the OpenGL headers */
CustomCCode #include <GL/gl.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