From d59015a695a3b729a41ccf36413666a7b298862f Mon Sep 17 00:00:00 2001 From: IndecisiveTurtle <47210458+raphaelthegreat@users.noreply.github.com> Date: Mon, 14 Jul 2025 03:14:44 +0300 Subject: [PATCH] Fix build --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 8433eff6c..511b3b068 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -285,10 +285,10 @@ bool PipelineCache::RefreshGraphicsKey() { auto& regs = liverpool->regs; auto& key = graphics_key; - key.z_format = regs.depth_buffer.DepthValid() ? regs.depth_buffer.z_info.format + key.z_format = regs.depth_buffer.DepthValid() ? regs.depth_buffer.z_info.format.Value() : Liverpool::DepthBuffer::ZFormat::Invalid; key.stencil_format = regs.depth_buffer.StencilValid() - ? regs.depth_buffer.stencil_info.format + ? regs.depth_buffer.stencil_info.format.Value() : Liverpool::DepthBuffer::StencilFormat::Invalid; key.depth_clip_enable = regs.clipper_control.ZclipEnable(); key.clip_space = regs.clipper_control.clip_space;