From: Kahrl Date: Wed, 26 Nov 2014 18:17:50 +0000 (+0100) Subject: EMF_USE_MIP_MAPS was introduced in Irrlicht 1.8, don't use in 1.7.3 or below X-Git-Tag: 0.4.11~132 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=571ba5d9c5f237d80bc4677246f916574a807074;p=oweals%2Fminetest.git EMF_USE_MIP_MAPS was introduced in Irrlicht 1.8, don't use in 1.7.3 or below This is not optimal as it will cause minor graphical glitches for Irrlicht 1.7 users, but at least it fixes the build. --- diff --git a/src/wieldmesh.cpp b/src/wieldmesh.cpp index ac0832057..71193da76 100644 --- a/src/wieldmesh.cpp +++ b/src/wieldmesh.cpp @@ -290,7 +290,9 @@ void WieldMeshSceneNode::setExtruded(const std::string &imagename, material.setFlag(video::EMF_TRILINEAR_FILTER, false); } // mipmaps cause "thin black line" artifacts +#if (IRRLICHT_VERSION_MAJOR >= 1 && IRRLICHT_VERSION_MINOR >= 8) || IRRLICHT_VERSION_MAJOR >= 2 material.setFlag(video::EMF_USE_MIP_MAPS, false); +#endif if (m_enable_shaders) material.setTexture(2, tsrc->getTexture("disable_img.png")); }