Commit 5c581f07 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

gdi32: Silence a common and expected error.

parent 7bf4db87
......@@ -622,7 +622,10 @@ BOOL BIDI_Reorder(
}
if (res)
{
FIXME("Unable to shape string (%x)\n",res);
if (res == USP_E_SCRIPT_NOT_IN_FONT)
TRACE("Unable to shape with currently selected font\n");
else
FIXME("Unable to shape string (%x)\n",res);
j = nItems;
doGlyphs = FALSE;
HeapFree(GetProcessHeap(), 0, *lpGlyphs);
......
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