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);