diff options
author | numzero <numzer0@yandex.ru> | 2023-03-03 21:23:07 +0300 |
---|---|---|
committer | numzero <numzer0@yandex.ru> | 2023-03-03 21:23:07 +0300 |
commit | df28a4cc46dd2c3dc306351019ab3d36c4968ca3 (patch) | |
tree | eea74ed54b12f26de8412b3b175f44f9a41febea /source | |
parent | 8dd8652f5ff3b046229a3e8ce299271a209375f3 (diff) | |
download | irrlicht-df28a4cc46dd2c3dc306351019ab3d36c4968ca3.tar.xz |
Fix ifdefs around includes in CIrrDeviceSDL
Diffstat (limited to 'source')
-rw-r--r-- | source/Irrlicht/CIrrDeviceSDL.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source/Irrlicht/CIrrDeviceSDL.cpp b/source/Irrlicht/CIrrDeviceSDL.cpp index 6ebf63b..ecd8a8d 100644 --- a/source/Irrlicht/CIrrDeviceSDL.cpp +++ b/source/Irrlicht/CIrrDeviceSDL.cpp @@ -20,15 +20,10 @@ #include <SDL_video.h>
#ifdef _IRR_EMSCRIPTEN_PLATFORM_
-#ifdef _IRR_COMPILE_WITH_OGLES2_
-#include "CEGLManager.h"
-#endif
#include <emscripten.h>
#endif
-#ifdef _IRR_COMPILE_WITH_OPENGL_
#include "CSDLManager.h"
-#endif
static int SDLDeviceInstances = 0;
|