aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/native/jogl/InternalBufferUtils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/native/jogl/InternalBufferUtils.c b/src/native/jogl/InternalBufferUtils.c
index 292d69f9d..cfda63ede 100644
--- a/src/native/jogl/InternalBufferUtils.c
+++ b/src/native/jogl/InternalBufferUtils.c
@@ -40,8 +40,8 @@
#include <jni.h>
#ifdef _MSC_VER
- /* This typedef seems to be needed at least for VC6 and Visual Studio 2003 */
- #if _MSC_VER <= 1300
+ /* This typedef is apparently needed for compilers before VC8 */
+ #if _MSC_VER < 1400
typedef int intptr_t;
#endif
#else