From b0d4cc85c5627a242b63c365470324144124be36 Mon Sep 17 00:00:00 2001 From: Forrest Mark X Date: Sun, 12 Jul 2026 06:58:12 -0500 Subject: [PATCH] Fixed logic error Don't judge me --- src/video_core/texture_cache/texture_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 7581af0f39..8b6b86e35f 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -1440,7 +1440,7 @@ void TextureCache

::TickAsyncUnswizzle() { task.swizzled_slice_size = swizzled_slice_size; task.swizzle_block_depth = sp.block_depth; - const bool can_bound_xy = sp.block_depth == 0; + const bool can_bound_xy = sp.block_depth > 0; const u32 blocks_x = Common::DivCeil(task.info.size.width, 4u); const u32 blocks_y = Common::DivCeil(task.info.size.height, 4u);