diff options
-rw-r--r-- | backends/graphics/opengl/glerrorcheck.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/backends/graphics/opengl/glerrorcheck.cpp b/backends/graphics/opengl/glerrorcheck.cpp index b64c8330f5..a4ad1e01ea 100644 --- a/backends/graphics/opengl/glerrorcheck.cpp +++ b/backends/graphics/opengl/glerrorcheck.cpp @@ -28,6 +28,15 @@ #include "backends/graphics/opengl/glerrorcheck.h" #include "common/debug.h" +#ifdef WIN32 +#if defined(ARRAYSIZE) && !defined(_WINDOWS_) +#undef ARRAYSIZE +#endif +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#undef ARRAYSIZE +#endif + #ifdef USE_GLES #include <GLES/gl.h> #else |