Commit 3b6daf25 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

gdi32: Quiet a noisy fixme.

parent d7944ae1
......@@ -1648,14 +1648,17 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags,
DWORD type;
DC * dc = get_dc_ptr( hdc );
INT breakRem;
static int quietfixme = 0;
if (!dc) return FALSE;
breakRem = dc->breakRem;
if (flags & (ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY))
if (quietfixme == 0 && flags & (ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY))
{
FIXME("flags ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY unimplemented\n");
quietfixme = 1;
}
if (!dc->funcs->pExtTextOut && !PATH_IsPathOpen(dc->path))
{
release_dc_ptr( dc );
......
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