diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2017-12-11 08:44:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-11 08:44:09 +0100 |
| commit | a70c03a1c0a6fce6724a323db3bdc41d8b905090 (patch) | |
| tree | 3dce9e863d08e860ff3636dc3fc25280827e13ba /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | 6a4e3cb3d609060191992b0fc71e849338ea57d6 (diff) | |
| parent | 2579f8eaa5baf308a2eeafce172628d8264ee402 (diff) | |
Merge pull request #6249 from stenzek/texture-dump
Texture dumping regression fixes
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index db8806c107..e3169d735f 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -1090,7 +1090,7 @@ TextureCacheBase::GetTexture(u32 address, u32 width, u32 height, const TextureFo entry->has_arbitrary_mips = arbitrary_mip_detector.HasArbitraryMipmaps(dst_buffer); - if (g_ActiveConfig.bDumpTextures) + if (g_ActiveConfig.bDumpTextures && !hires_tex) { for (u32 level = 0; level < texLevels; ++level) { |
