early-access version 3989

This commit is contained in:
pineappleEA
2023-11-24 08:19:44 +01:00
parent 8c8ebf2eda
commit b80e69645e
3 changed files with 5 additions and 2 deletions

View File

@@ -1574,6 +1574,9 @@ std::optional<typename TextureCache<P>::BlitImages> TextureCache<P>::GetBlitImag
if (!src_id && !dst_id) {
return std::nullopt;
}
if (src_id && True(slot_images[src_id].flags & ImageFlagBits::GpuModified)) {
break;
}
if (dst_id && True(slot_images[dst_id].flags & ImageFlagBits::GpuModified)) {
break;
}