From 3a58f7ec6b4c8b653e6d0f72eb74c18a29b1ac82 Mon Sep 17 00:00:00 2001 From: Hog Date: Mon, 8 Jun 2026 12:17:21 +0100 Subject: [PATCH] clang is a stupid stupid thing --- src/shader_recompiler/backend/spirv/emit_spirv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.cpp b/src/shader_recompiler/backend/spirv/emit_spirv.cpp index ef0324128..6a1eb4d88 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv.cpp @@ -239,8 +239,8 @@ spv::ExecutionMode ExecutionMode(AmdGpu::TessellationPartitioning spacing) { case AmdGpu::TessellationPartitioning::Pow2: // Pow2 rounds tessellation factors to the nearest power of 2, which has no // direct Vulkan equivalent. SpacingEqual (integer) is the closest match. - LOG_WARNING(Render_Vulkan, - "Tessellation partitioning Pow2 has no Vulkan equivalent, falling back to SpacingEqual"); + LOG_WARNING(Render_Vulkan, "Tessellation partitioning Pow2 has no Vulkan equivalent, " + "falling back to SpacingEqual"); return spv::ExecutionMode::SpacingEqual; default: break;