From bb6fab200969531ff858de399879779de5aaeac0 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 14 Jul 2021 14:48:57 -0300 Subject: [PATCH] Ensure that DMA copy target textures are kept alive or flushed (#2478) --- Ryujinx.Graphics.Gpu/Image/TextureCache.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs b/Ryujinx.Graphics.Gpu/Image/TextureCache.cs index 1b54033cf..d9920f973 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureCache.cs @@ -816,6 +816,7 @@ namespace Ryujinx.Graphics.Gpu.Image if (match) { + _cache.Lift(texture); return texture; } }