Commit 991c7652 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

mscms: Quiet a noisy fixme.

parent 7aef1c71
......@@ -58,6 +58,7 @@ static DWORD from_profile( HPROFILE profile )
static DWORD from_bmformat( BMFORMAT format )
{
static int quietfixme = 0;
TRACE( "bitmap format: 0x%08x\n", format );
switch (format)
......@@ -66,7 +67,11 @@ static DWORD from_bmformat( BMFORMAT format )
case BM_BGRTRIPLETS: return TYPE_BGR_8;
case BM_GRAY: return TYPE_GRAY_8;
default:
FIXME("unhandled bitmap format\n");
if (quietfixme == 0)
{
FIXME("unhandled bitmap format 0x%x\n", format);
quietfixme = 1;
}
return TYPE_RGB_8;
}
}
......
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