From 06ae08ca8b9acd77022585c3a766a8d26e61793a Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Sat, 28 Jan 2023 21:08:39 +1300 Subject: [PATCH] Fix misnamed local variable --- Source/Core/VideoBackends/Vulkan/VKGfx.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoBackends/Vulkan/VKGfx.cpp b/Source/Core/VideoBackends/Vulkan/VKGfx.cpp index 1cb029313f..f2aeaef0ca 100644 --- a/Source/Core/VideoBackends/Vulkan/VKGfx.cpp +++ b/Source/Core/VideoBackends/Vulkan/VKGfx.cpp @@ -36,8 +36,8 @@ VKGfx::VKGfx(std::unique_ptr swap_chain, float backbuffer_scale) : m_swap_chain(std::move(swap_chain)), m_backbuffer_scale(backbuffer_scale) { UpdateActiveConfig(); - for (SamplerState& m_sampler_state : m_sampler_states) - m_sampler_state = RenderState::GetPointSamplerState(); + for (SamplerState& sampler_state : m_sampler_states) + sampler_state = RenderState::GetPointSamplerState(); // Various initialization routines will have executed commands on the command buffer. // Execute what we have done before beginning the first frame.