diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 9511683576c5bf171a8c127e6d60a64b8fb72a46..d2c27bceffeb2c90fcfab5b976341fd474786d00 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -389,7 +389,8 @@ private:
         const auto gpu_addr = current_surface->GetGpuAddr();
         TSurface new_surface = GetUncachedSurface(gpu_addr, params);
         const auto& cr_params = current_surface->GetSurfaceParams();
-        if (!support_info.depth_color_image_copies && cr_params.type != params.type) {
+        if (cr_params.type != params.type && (!support_info.depth_color_image_copies ||
+                                              cr_params.component_type != params.component_type)) {
             BufferCopy(current_surface, new_surface);
         } else {
             std::vector<CopyParams> bricks = current_surface->BreakDown(params);