Commit a55cf358 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

dxgi: Silence a noisy fixme.

parent 45aef81c
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment