diff options
Diffstat (limited to 'source/Irrlicht/Irrlicht.cpp')
-rw-r--r-- | source/Irrlicht/Irrlicht.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source/Irrlicht/Irrlicht.cpp b/source/Irrlicht/Irrlicht.cpp index ed6b082..d1d2678 100644 --- a/source/Irrlicht/Irrlicht.cpp +++ b/source/Irrlicht/Irrlicht.cpp @@ -29,10 +29,6 @@ static const char* const copyright = "Irrlicht Engine (c) 2002-2017 Nikolaus Geb #include "CIrrDeviceSDL.h"
#endif
-#ifdef _IRR_COMPILE_WITH_IOS_DEVICE_
-#include "CIrrDeviceiOS.h"
-#endif
-
#ifdef _IRR_COMPILE_WITH_ANDROID_DEVICE_
#include "Android/CIrrDeviceAndroid.h"
#endif
@@ -78,11 +74,6 @@ namespace irr if (params.DeviceType == EIDT_X11 || (!dev && params.DeviceType == EIDT_BEST))
dev = new CIrrDeviceLinux(params);
#endif
-
-#ifdef _IRR_COMPILE_WITH_IOS_DEVICE_
- if (params.DeviceType == EIDT_IOS || (!dev && params.DeviceType == EIDT_BEST))
- dev = new CIrrDeviceiOS(params);
-#endif
#ifdef _IRR_COMPILE_WITH_ANDROID_DEVICE_
if (params.DeviceType == EIDT_ANDROID || (!dev && params.DeviceType == EIDT_BEST))
|