diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-20 11:56:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:56:40 -0700 |
commit | 8cdd86fa2502c9c487da373ae12aa2c2363c8e6e (patch) | |
tree | 3a0c73f0b764495982290d04edaf99e65e596daa | |
parent | 7083c5bfc8b6990ac9cd0758a452fbd75c15f3d2 (diff) | |
parent | 17b7f0389a8f1968d9259a1249fa568cfe9492f5 (diff) |
Merge pull request #6218 from lioncash/tcache
texture_cache/util: Fix src being used instead of dst within DeduceBlitImages case
-rw-r--r-- | src/video_core/texture_cache/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/util.cpp b/src/video_core/texture_cache/util.cpp index 0ab297413d..8c4a5523b3 100644 --- a/src/video_core/texture_cache/util.cpp +++ b/src/video_core/texture_cache/util.cpp @@ -1139,7 +1139,7 @@ void DeduceBlitImages(ImageInfo& dst_info, ImageInfo& src_info, const ImageBase* dst_info.format = src->info.format; } if (!src && dst && GetFormatType(dst->info.format) != SurfaceType::ColorTexture) { - src_info.format = src->info.format; + src_info.format = dst->info.format; } } |