mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
gdi32: Avoid compiler warning in WineEngGetGlyphOutline().
This commit is contained in:
parent
1a0f1bc6ce
commit
4e60df85d8
1 changed files with 2 additions and 3 deletions
|
@ -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 a new issue