gdi32: Do not ignore USP_E_SCRIPT_NOT_IN_FONT when shaping glyphs.

This commit is contained in:
Aric Stewart 2010-05-31 00:37:57 -05:00 committed by Alexandre Julliard
parent f99e1d80e2
commit a4d25f1260
1 changed files with 1 additions and 1 deletions

View File

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