gdi32: Fixed a misplaced break.

This commit is contained in:
Huw Davies 2007-10-04 12:22:37 +01:00 committed by Alexandre Julliard
parent 514db0a59d
commit 36db3630ec

View File

@ -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);