From caccee5db20c2a5e8082e3668335f68c938a9087 Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Mon, 14 Oct 2013 02:22:34 +0200 Subject: [PATCH] Fix up glew include paths --- src/debuglogger.cpp | 2 +- src/gl-util.h | 2 +- src/glstate.cpp | 2 +- src/main.cpp | 2 +- src/perftimer.cpp | 2 +- src/quad.h | 2 +- src/shader.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/debuglogger.cpp b/src/debuglogger.cpp index 73394b5..383170a 100644 --- a/src/debuglogger.cpp +++ b/src/debuglogger.cpp @@ -21,7 +21,7 @@ #include "debuglogger.h" -#include "GL/glew.h" +#include "glew.h" #include #include diff --git a/src/gl-util.h b/src/gl-util.h index 2647247..0bca223 100644 --- a/src/gl-util.h +++ b/src/gl-util.h @@ -22,7 +22,7 @@ #ifndef GLUTIL_H #define GLUTIL_H -#include "GL/glew.h" +#include "glew.h" #include "etc-internal.h" #include diff --git a/src/glstate.cpp b/src/glstate.cpp index 031a031..dfe8744 100644 --- a/src/glstate.cpp +++ b/src/glstate.cpp @@ -20,7 +20,7 @@ */ #include "glstate.h" -#include "GL/glew.h" +#include "glew.h" #include "SDL_rect.h" #include "etc.h" diff --git a/src/main.cpp b/src/main.cpp index 764d2fb..f85f962 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ ** along with mkxp. If not, see . */ -#include "GL/glew.h" +#include "glew.h" #include "SDL.h" #include "SDL_image.h" diff --git a/src/perftimer.cpp b/src/perftimer.cpp index 29100ad..5216104 100644 --- a/src/perftimer.cpp +++ b/src/perftimer.cpp @@ -1,7 +1,7 @@ #include "perftimer.h" #include "SDL_timer.h" -#include "GL/glew.h" +#include "glew.h" #include diff --git a/src/quad.h b/src/quad.h index 07df9f2..188a829 100644 --- a/src/quad.h +++ b/src/quad.h @@ -22,7 +22,7 @@ #ifndef QUAD_H #define QUAD_H -#include "GL/glew.h" +#include "glew.h" #include "etc-internal.h" #include "gl-util.h" #include "sharedstate.h" diff --git a/src/shader.cpp b/src/shader.cpp index 0d07892..038d602 100644 --- a/src/shader.cpp +++ b/src/shader.cpp @@ -23,7 +23,7 @@ #include "sharedstate.h" #include "glstate.h" -#include "GL/glew.h" +#include "glew.h" #include