commit 04ee09d084fcba0b9ce705b6e3f0975fc08ce603 Author: Aric Stewart Date: Mon May 31 00:36:28 2010 -0500 gdi32: do not ignore USP_E_SCRIPT_NOT_IN_FONT when shaping glyphs diff --git a/dlls/gdi32/bidi.c b/dlls/gdi32/bidi.c index ce6c358..7b3995b 100644 --- a/dlls/gdi32/bidi.c +++ b/dlls/gdi32/bidi.c @@ -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;