From 0ff22ed0a66cd31c1be1a6bafab3479bfeccc08c Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Fri, 21 Feb 2020 16:16:54 +0100 Subject: [PATCH] custom tex: disable mipmapping when dumping textures --- core/rend/TexCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rend/TexCache.cpp b/core/rend/TexCache.cpp index ee4193104..da2b06fb2 100644 --- a/core/rend/TexCache.cpp +++ b/core/rend/TexCache.cpp @@ -636,7 +636,7 @@ void BaseTextureCacheData::Update() need_32bit_buffer = false; // TODO avoid upscaling/depost. textures that change too often - bool mipmapped = IsMipmapped() && settings.rend.UseMipmaps; + bool mipmapped = IsMipmapped() && settings.rend.UseMipmaps && !settings.rend.DumpTextures; if (texconv32 != NULL && need_32bit_buffer) {