Commit 0750e758 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

d3dx9: Downgrade unknown DWORD FIXMEs() to WARN() messages.

parent f0e9dea5
......@@ -425,11 +425,11 @@ static void skip_dword_unknown(const char **ptr, unsigned int count)
unsigned int i;
DWORD d;
FIXME("Skipping %u unknown DWORDs:\n", count);
WARN("Skipping %u unknown DWORDs:\n", count);
for (i = 0; i < count; ++i)
{
read_dword(ptr, &d);
FIXME("\t0x%08x\n", d);
WARN("\t0x%08x\n", d);
}
}
......
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