summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-20 20:56:40 +0200
committerGitHub <noreply@github.com>2021-04-20 20:56:40 +0200
commit8cdd86fa2502c9c487da373ae12aa2c2363c8e6e (patch)
tree3a0c73f0b764495982290d04edaf99e65e596daa
parentMerge pull request #6207 from lat9nq/sdl-2.0.14 (diff)
parenttexture_cache/util: Fix src being used instead of dst within DeduceBlitImages (diff)
downloadyuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar.gz
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar.bz2
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar.lz
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar.xz
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.tar.zst
yuzu-8cdd86fa2502c9c487da373ae12aa2c2363c8e6e.zip
-rw-r--r--src/video_core/texture_cache/util.cpp2
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 0ab297413..8c4a5523b 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;
}
}