diff --git a/app/src/main/cpp/skyline/gpu/texture_manager.cpp b/app/src/main/cpp/skyline/gpu/texture_manager.cpp index 1147f7ca..7d36b096 100644 --- a/app/src/main/cpp/skyline/gpu/texture_manager.cpp +++ b/app/src/main/cpp/skyline/gpu/texture_manager.cpp @@ -48,7 +48,7 @@ namespace skyline::gpu { if (matchGuestTexture.format->IsCompatible(*guestTexture.format) && ((matchGuestTexture.dimensions.width == guestTexture.dimensions.width && matchGuestTexture.dimensions.height == guestTexture.dimensions.height && - matchGuestTexture.dimensions.depth == guestTexture.GetViewDepth()) + matchGuestTexture.GetViewDepth() == guestTexture.GetViewDepth()) || matchGuestTexture.viewMipBase > 0) && matchGuestTexture.tileConfig == guestTexture.tileConfig) { auto &texture{hostMapping->texture};