From 282cd65a2d4689e0d30c6f40f47e2637c764f543 Mon Sep 17 00:00:00 2001 From: krzys-h Date: Sun, 28 Feb 2016 20:22:05 +0100 Subject: [PATCH] Fix reloading changed ground spot textures (closes #404) --- src/graphics/engine/engine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/graphics/engine/engine.cpp b/src/graphics/engine/engine.cpp index 3e98e8ff..421ae82a 100644 --- a/src/graphics/engine/engine.cpp +++ b/src/graphics/engine/engine.cpp @@ -4170,6 +4170,9 @@ void CEngine::UpdateGroundSpotTextures() m_groundMark.drawIntensity = m_groundMark.intensity; m_firstGroundSpot = false; + + // Reload the model textures from cache now + LoadAllTextures(); } void CEngine::DrawShadowSpots()