From 307a131ca09f705b97f15ede1f702630cca6b396 Mon Sep 17 00:00:00 2001 From: Dave Corley Date: Tue, 11 Nov 2025 11:25:52 -0600 Subject: [PATCH] FIX: Correct compile error on newest clang --- components/sceneutil/texturetype.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sceneutil/texturetype.hpp b/components/sceneutil/texturetype.hpp index dbed8a0e74..4a1fb7692c 100644 --- a/components/sceneutil/texturetype.hpp +++ b/components/sceneutil/texturetype.hpp @@ -18,7 +18,7 @@ namespace SceneUtil { } - static const osg::StateAttribute::Type AttributeType = static_cast(69420); + static const osg::StateAttribute::Type AttributeType = static_cast(69); META_StateAttribute(SceneUtil, TextureType, AttributeType) bool isTextureAttribute() const override { return true; }