mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
mscms: Use BOOL type where appropriate.
This commit is contained in:
parent
e50dfb69ee
commit
685b931c2a
@ -58,7 +58,7 @@ static DWORD from_profile( HPROFILE profile )
|
||||
|
||||
static DWORD from_bmformat( BMFORMAT format )
|
||||
{
|
||||
static int quietfixme = 0;
|
||||
static BOOL quietfixme = FALSE;
|
||||
TRACE( "bitmap format: 0x%08x\n", format );
|
||||
|
||||
switch (format)
|
||||
@ -69,10 +69,10 @@ static DWORD from_bmformat( BMFORMAT format )
|
||||
case BM_xRGBQUADS: return TYPE_ARGB_8;
|
||||
case BM_xBGRQUADS: return TYPE_ABGR_8;
|
||||
default:
|
||||
if (quietfixme == 0)
|
||||
if (!quietfixme)
|
||||
{
|
||||
FIXME("unhandled bitmap format 0x%x\n", format);
|
||||
quietfixme = 1;
|
||||
quietfixme = TRUE;
|
||||
}
|
||||
return TYPE_RGB_8;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user