From 5fcb03f6b6831cee67b643f7d46002876d6de000 Mon Sep 17 00:00:00 2001 From: Daniel Rakos Date: Sat, 26 Jan 2019 09:12:38 +0100 Subject: Changed ImageTexture image cache type to the correct one, fixes #24971 The original attempt to fix the issue was accidentally using the wrong type for the image cache. This change fixes that. --- scene/resources/texture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/texture.h b/scene/resources/texture.h index a6b4c763e9..4b5b504510 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -111,7 +111,7 @@ private: Size2 size_override; float lossy_storage_quality; mutable Ref alpha_cache; - Ref image_cache; + Ref image_cache; protected: virtual void reload_from_file(); -- cgit v1.2.3