summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 08:55:02 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 15:21:42 +0200
commitd3d6613d33d6ca695732ccbdbd3e749053d22d0a (patch)
treef60dfab785157d35dd4110f7cf42b52c7180fee0 /src/video_core/texture_cache/image_base.cpp
parentMerge pull request #6535 from ameerj/insert-fancy-name (diff)
downloadyuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.gz
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.bz2
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.lz
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.xz
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.zst
yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/image_base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/image_base.cpp b/src/video_core/texture_cache/image_base.cpp
index ad69d32d1..f22358c90 100644
--- a/src/video_core/texture_cache/image_base.cpp
+++ b/src/video_core/texture_cache/image_base.cpp
@@ -82,7 +82,7 @@ std::optional<SubresourceBase> ImageBase::TryFindBase(GPUVAddr other_addr) const
if (info.type != ImageType::e3D) {
const auto [layer, mip_offset] = LayerMipOffset(diff, info.layer_stride);
const auto end = mip_level_offsets.begin() + info.resources.levels;
- const auto it = std::find(mip_level_offsets.begin(), end, mip_offset);
+ const auto it = std::find(mip_level_offsets.begin(), end, static_cast<u32>(mip_offset));
if (layer > info.resources.layers || it == end) {
return std::nullopt;
}