1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-31 14:52:11 +01:00

[dxgi] *Actually* silence WaitForVBlank warning

Guess who needs more coffee.
This commit is contained in:
Philip Rebohle 2018-10-09 19:17:20 +02:00
parent 08b241b3ea
commit e5f3019524
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -333,9 +333,9 @@ namespace dxvk {
HRESULT STDMETHODCALLTYPE DxgiOutput::WaitForVBlank() {
bool s_warningShown = false;
static bool s_errorShown = false;
if (!std::exchange(s_warningShown, true))
if (!std::exchange(s_errorShown, true))
Logger::warn("DxgiOutput::WaitForVBlank: Stub");
return S_OK;
}