dxgi: Silence a noisy fixme.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2017-02-08 04:38:22 +00:00 committed by Alexandre Julliard
parent 45aef81cbe
commit a55cf3586d

View file

@ -268,7 +268,12 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_FindClosestMatchingMode(IDXGIOutput
static HRESULT STDMETHODCALLTYPE dxgi_output_WaitForVBlank(IDXGIOutput *iface)
{
FIXME("iface %p stub!\n", iface);
static BOOL once = FALSE;
if (!once++)
FIXME("iface %p stub!\n", iface);
else
TRACE("iface %p stub!\n", iface);
return E_NOTIMPL;
}