summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2021-04-19 13:01:48 -0400
committerGravatar Lioncash2021-04-19 13:01:50 -0400
commit17b7f0389a8f1968d9259a1249fa568cfe9492f5 (patch)
tree468ca03357bd6a11132364e2f9334727d7abbf84
parentMerge pull request #6208 from lat9nq/boost-static (diff)
downloadyuzu-17b7f0389a8f1968d9259a1249fa568cfe9492f5.tar.gz
yuzu-17b7f0389a8f1968d9259a1249fa568cfe9492f5.tar.xz
yuzu-17b7f0389a8f1968d9259a1249fa568cfe9492f5.zip
texture_cache/util: Fix src being used instead of dst within DeduceBlitImages
This line can only ever be reached if src is null, so dereferencing it here is a logic bug that slipped through. Instead, we dereference dst instead which is guaranteed to be valid.
-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*
1139 dst_info.format = src->info.format; 1139 dst_info.format = src->info.format;
1140 } 1140 }
1141 if (!src && dst && GetFormatType(dst->info.format) != SurfaceType::ColorTexture) { 1141 if (!src && dst && GetFormatType(dst->info.format) != SurfaceType::ColorTexture) {
1142 src_info.format = src->info.format; 1142 src_info.format = dst->info.format;
1143 } 1143 }
1144} 1144}
1145 1145