Fix for #160 - Desktop GL headers were used by guisan, instead of SDL_opengl

This commit is contained in:
Dimitris Panokostas 2017-12-01 21:58:30 +01:00
parent 709244ad9e
commit 62e8a2c58f
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@
#if defined (__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#include <SDL2/SDL_opengl.h>
#endif
#include <string>

View file

@ -68,7 +68,7 @@
#if defined(__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#include <SDL2/SDL_opengl.h>
#endif
#include "guisan/exception.hpp"