From aa50b0fbb99c04918645a78acd1fcab8a1cf31b2 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Wed, 25 Jun 2025 01:44:04 +0300 Subject: [PATCH] vk: Fix video-out calibration pass inputs --- rpcs3/Emu/RSX/VK/VKOverlays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKOverlays.cpp b/rpcs3/Emu/RSX/VK/VKOverlays.cpp index 70d9a7ab49..34ca64ca66 100644 --- a/rpcs3/Emu/RSX/VK/VKOverlays.cpp +++ b/rpcs3/Emu/RSX/VK/VKOverlays.cpp @@ -859,7 +859,7 @@ namespace vk std::pair repl_list[] = { - { "%sampler_binding", fmt::format("(%d + x)", sampler_location(0)) }, + { "%sampler_binding", "x" }, { "%set_decorator", "set=0" }, }; fs_src = fmt::replace_all(fs_src, repl_list);