Build fix for Visual Studio 2003

INT_MAX was not being defined, so #include <limits.h>.
pull/3/head
Daniel Richard G 2013-09-20 21:38:53 -04:00
parent fb766d1cf9
commit e7f3a3c0db
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ typedef signed short SWORD;
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <limits.h>
#include <windows.h> // required for GL stuff
#include <gl/gl.h>
#include <gl/glu.h>