mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Fix misnamed local variable
This commit is contained in:
parent
f158ff300b
commit
06ae08ca8b
@ -36,8 +36,8 @@ VKGfx::VKGfx(std::unique_ptr<SwapChain> swap_chain, float backbuffer_scale)
|
|||||||
: m_swap_chain(std::move(swap_chain)), m_backbuffer_scale(backbuffer_scale)
|
: m_swap_chain(std::move(swap_chain)), m_backbuffer_scale(backbuffer_scale)
|
||||||
{
|
{
|
||||||
UpdateActiveConfig();
|
UpdateActiveConfig();
|
||||||
for (SamplerState& m_sampler_state : m_sampler_states)
|
for (SamplerState& sampler_state : m_sampler_states)
|
||||||
m_sampler_state = RenderState::GetPointSamplerState();
|
sampler_state = RenderState::GetPointSamplerState();
|
||||||
|
|
||||||
// Various initialization routines will have executed commands on the command buffer.
|
// Various initialization routines will have executed commands on the command buffer.
|
||||||
// Execute what we have done before beginning the first frame.
|
// Execute what we have done before beginning the first frame.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user