mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-02 13:29:14 +01:00
[dxgi] *Actually* silence WaitForVBlank warning
Guess who needs more coffee.
This commit is contained in:
parent
08b241b3ea
commit
e5f3019524
@ -333,9 +333,9 @@ namespace dxvk {
|
|||||||
|
|
||||||
|
|
||||||
HRESULT STDMETHODCALLTYPE DxgiOutput::WaitForVBlank() {
|
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");
|
Logger::warn("DxgiOutput::WaitForVBlank: Stub");
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user