diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-31 01:48:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-31 01:48:18 +0300 |
commit | d53b058ec3f6208f34884ed572bb5d47de932108 (patch) | |
tree | 980acf66aaa3b5df6b7e3e7e08dfccc0b9af8827 /src/graphicsmanager.cpp | |
parent | 4530a341c65ac12e50075fb3e3d6166cd2e1fe3b (diff) | |
download | plus-d53b058ec3f6208f34884ed572bb5d47de932108.tar.gz plus-d53b058ec3f6208f34884ed572bb5d47de932108.tar.bz2 plus-d53b058ec3f6208f34884ed572bb5d47de932108.tar.xz plus-d53b058ec3f6208f34884ed572bb5d47de932108.zip |
Fix different include issues.
Diffstat (limited to 'src/graphicsmanager.cpp')
-rw-r--r-- | src/graphicsmanager.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index 4c05a50d3..f3b712724 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -42,12 +42,11 @@ #endif // WIN32 #endif // USE_OPENGL -#include "configuration.h" -#include "logger.h" - #include "settings.h" #ifdef USE_OPENGL +#include "logger.h" + #include "render/mobileopengl2graphics.h" #include "render/mobileopenglgraphics.h" #include "render/modernopenglgraphics.h" @@ -58,7 +57,6 @@ #include "render/opengl/mglcheck.h" #include "render/opengl/mglemu.h" #endif -#include "render/renderers.h" #include "render/sdlgraphics.h" #ifdef USE_OPENGL |