From a0b0effd50678192524a666019ef5fd9942fb856 Mon Sep 17 00:00:00 2001 From: vladislavbelov Date: Sun, 20 Feb 2022 10:51:11 +0000 Subject: [PATCH] Fixes minimap after map reloading. Reported By: marder This was SVN commit r26439. --- source/graphics/TextureManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/graphics/TextureManager.cpp b/source/graphics/TextureManager.cpp index 76b40cba4b..52adcfb55b 100644 --- a/source/graphics/TextureManager.cpp +++ b/source/graphics/TextureManager.cpp @@ -786,7 +786,7 @@ bool CTexture::TryLoad() } } - return IsLoaded(); + return IsLoaded() || IsUploaded(); } void CTexture::Prefetch()