Fix opengl header inclusion on osx

This commit is contained in:
Simon Detheridge 2015-01-14 10:40:24 +00:00
parent a5fc85b17e
commit 4d977f6e3a

View File

@ -11,9 +11,11 @@
#include "Timing.h"
#include "Renderer.h"
#ifdef _WIN32
#if defined(_WIN32)
#include <windows.h>
#include <SDKDDKVer.h>
#elif defined(__APPLE__)
#include <OpenGL/gl.h>
#else
#include "GL/glx.h"
#endif