Commit 36db3630 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32: Fixed a misplaced break.

parent 514db0a5
......@@ -3768,10 +3768,9 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
mult = 64;
else if(format == WINE_GGO_GRAY16_BITMAP)
return needed;
else {
else
assert(0);
break;
}
break;
}
default:
FIXME("loaded glyph format %x\n", ft_face->glyph->format);
......
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