From 80e8112b867cb433c6af0090514abe0bd411bf1f Mon Sep 17 00:00:00 2001 From: Olivier Tilloy Date: Wed, 24 Jun 2026 17:13:55 +0200 Subject: [PATCH] rendervulkan: fix a harmless typo in a variable name --- src/rendervulkan.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rendervulkan.cpp b/src/rendervulkan.cpp index aefc6b21e9..6c71cc8739 100644 --- a/src/rendervulkan.cpp +++ b/src/rendervulkan.cpp @@ -317,8 +317,8 @@ bool CVulkanDevice::BInit(VkInstance instance, VkSurfaceKHR surface) m_bInitialized = true; - std::thread piplelineThread([this](){compileAllPipelines();}); - piplelineThread.detach(); + std::thread pipelineThread([this](){compileAllPipelines();}); + pipelineThread.detach(); g_reshadeManager.init(this);