From 16309606c704dee81c777f33b830d23ed33f56d0 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Mon, 17 Feb 2025 02:31:28 +0000 Subject: [PATCH] VideoCommon: ensure cached textures are recorded into FIFO logs --- Source/Core/VideoCommon/TextureCacheBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index b370481c04..d39b3ad880 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -1241,7 +1241,7 @@ private: TCacheEntry* TextureCacheBase::Load(const TextureInfo& texture_info) { - if (auto entry = LoadImpl(texture_info, false)) + if (auto entry = LoadImpl(texture_info, OpcodeDecoder::g_record_fifo_data)) { if (!DidLinkedAssetsChange(*entry)) {