From 04c29645a29d4d1dded974bf52f12306b44e4b1e Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Tue, 23 Dec 2025 01:23:33 -0400 Subject: [PATCH] Fix building --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 402dafaf58..7f4de40c87 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -229,7 +229,7 @@ Shader::RuntimeInfo MakeRuntimeInfo(std::span program info.xfb_varyings = varyings; info.xfb_count = count; } else { - LOG_WARN(Render_Vulkan, "XFB requested in pipeline key but device lacks VK_EXT_transform_feedback; ignoring XFB decorations"); + LOG_WARNING(Render_Vulkan, "XFB requested in pipeline key but device lacks VK_EXT_transform_feedback; ignoring XFB decorations"); } } info.convert_depth_mode = gl_ndc;