Skip to content

Commit

Permalink
Support r14 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
appgurueu committed Feb 17, 2024
1 parent 1f13851 commit 560c770
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion misc/irrlichtmt_tag.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0mt15
1.9.0mt14
6 changes: 5 additions & 1 deletion src/client/shadows/dynamicshadowsrender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,12 @@ void ShadowRenderer::addNodeToShadowList(
{
m_shadow_node_array.emplace_back(node, shadowMode);
// node should never be ClientMap
#if IRRLICHT_VERSION_MT_REVISION >= 15
assert(!node->getName().has_value() || *node->getName() != "ClientMap");

#else
// TODO: Remove this as soon as we require 1.9.0mt15
assert(strcmp(node->getName(), "ClientMap") != 0);
#endif
node->forEachMaterial([this] (auto &mat) {
mat.setTexture(TEXTURE_LAYER_SHADOW, shadowMapTextureFinal);
});
Expand Down

0 comments on commit 560c770

Please sign in to comment.