gdi32: Avoid compiler warning in WineEngGetGlyphOutline().
This commit is contained in:
parent
1a0f1bc6ce
commit
4e60df85d8
|
@ -3837,10 +3837,9 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
|
|||
mult = 16;
|
||||
else if(format == GGO_GRAY8_BITMAP)
|
||||
mult = 64;
|
||||
else if(format == WINE_GGO_GRAY16_BITMAP)
|
||||
else /* format == WINE_GGO_GRAY16_BITMAP */
|
||||
return needed;
|
||||
else
|
||||
assert(0);
|
||||
|
||||
break;
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue