Commit 4e60df85 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

gdi32: Avoid compiler warning in WineEngGetGlyphOutline().

parent 1a0f1bc6
......@@ -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:
......
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