Commit a4d25f12 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

gdi32: Do not ignore USP_E_SCRIPT_NOT_IN_FONT when shaping glyphs.

parent f99e1d80
......@@ -620,7 +620,7 @@ BOOL BIDI_Reorder(
}
res = ScriptShape(hDC, &psc, lpString + done + curItem->iCharPos, cChars, cMaxGlyphs, &curItem->a, run_glyphs, pwLogClust, psva, &cOutGlyphs);
}
if (res && res != USP_E_SCRIPT_NOT_IN_FONT)
if (res)
{
FIXME("Unable to shape string (%x)\n",res);
j = nItems;
......
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