diff --git a/src/d3d9/d3d9_swapchain.cpp b/src/d3d9/d3d9_swapchain.cpp index a66384c28..aa56fa85d 100644 --- a/src/d3d9/d3d9_swapchain.cpp +++ b/src/d3d9/d3d9_swapchain.cpp @@ -190,7 +190,7 @@ namespace dxvk { m_parent->EndFrame(); m_parent->Flush(); - if (!std::exchange(m_warnedGDIAboutFallback, true)) + if (!std::exchange(m_warnedAboutGDIFallback, true)) Logger::warn("Using GDI for swapchain presentation. This will impact performance."); HDC hDC; diff --git a/src/d3d9/d3d9_swapchain.h b/src/d3d9/d3d9_swapchain.h index 85a4836e9..438a67b15 100644 --- a/src/d3d9/d3d9_swapchain.h +++ b/src/d3d9/d3d9_swapchain.h @@ -132,7 +132,7 @@ namespace dxvk { double m_displayRefreshRate = 0.0; - bool m_warnedGDIAboutFallback = false; + bool m_warnedAboutGDIFallback = false; void PresentImage(UINT PresentInterval);