summaryrefslogtreecommitdiff
path: root/src/client/sky.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-05-17 01:03:33 +0200
committersfan5 <sfan5@live.de>2021-03-09 21:53:17 +0100
commit3579dd21867598ff30867ebd68b690c85ba14f9b (patch)
tree7df73434ea692d49feca32017a4f6e4f19d347aa /src/client/sky.cpp
parent13b50f55a45b8e68a787e7793d5e6e612d95a5a0 (diff)
downloadminetest-3579dd21867598ff30867ebd68b690c85ba14f9b.tar.gz
minetest-3579dd21867598ff30867ebd68b690c85ba14f9b.tar.bz2
minetest-3579dd21867598ff30867ebd68b690c85ba14f9b.zip
Restore Irrlicht 1.9 support
Diffstat (limited to 'src/client/sky.cpp')
-rw-r--r--src/client/sky.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/sky.cpp b/src/client/sky.cpp
index 3a40321dd..caf695e7a 100644
--- a/src/client/sky.cpp
+++ b/src/client/sky.cpp
@@ -39,12 +39,13 @@ static video::SMaterial baseMaterial()
{
video::SMaterial mat;
mat.Lighting = false;
-#if ENABLE_GLES
+#if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
mat.ZBuffer = video::ECFN_DISABLED;
+ mat.ZWriteEnable = video::EZW_OFF;
#else
+ mat.ZWriteEnable = false;
mat.ZBuffer = video::ECFN_NEVER;
#endif
- mat.ZWriteEnable = false;
mat.AntiAliasing = 0;
mat.TextureLayer[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE;
mat.TextureLayer[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE;