[d3d9] Fix stupid variable name

This commit is contained in:
Robin Kertels 2023-05-07 13:28:42 +02:00
parent b08665c808
commit bef2ef69ab
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -132,7 +132,7 @@ namespace dxvk {
double m_displayRefreshRate = 0.0;
bool m_warnedGDIAboutFallback = false;
bool m_warnedAboutGDIFallback = false;
void PresentImage(UINT PresentInterval);