diff --git a/GPU/Common/TextureCacheCommon.cpp b/GPU/Common/TextureCacheCommon.cpp index 4984df18e8..8f0ffb40d2 100644 --- a/GPU/Common/TextureCacheCommon.cpp +++ b/GPU/Common/TextureCacheCommon.cpp @@ -256,6 +256,7 @@ SamplerCacheKey TextureCacheCommon::GetSamplingParams(int maxLevel, const TexCac if (entry && replacer_.Enabled() && entry->replacedTexture && entry->replacedTexture->State() == ReplacementState::ACTIVE) { // If replacement textures have multiple mip levels, enforce mip filtering. if (entry->replacedTexture->NumLevels() > 1) { + key.mipEnable = true; key.mipFilt = 1; key.maxLevel = 9 * 256; }