From 5df5f5144e5e67d166c629a90a1ce03ea2136e0d Mon Sep 17 00:00:00 2001 From: Ansariel Date: Fri, 20 Dec 2024 13:20:14 +0100 Subject: [PATCH] Try suggested fix for minimap tiles missing until LL comes up with a different solution --- indra/newview/llsurface.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/indra/newview/llsurface.cpp b/indra/newview/llsurface.cpp index 905976844a..174c2c3e41 100644 --- a/indra/newview/llsurface.cpp +++ b/indra/newview/llsurface.cpp @@ -224,7 +224,10 @@ LLViewerTexture* LLSurface::getSTexture() void LLSurface::createSTexture() { - if (!mSTexturep) + // Fix for minimap world tiles missing + //if (!mSTexturep) + if (mSTexturep.isNull() || !mSTexturep->hasGLTexture()) + // { U64 handle = mRegionp->getHandle();