diff --git a/dlls/gdi32/bidi.c b/dlls/gdi32/bidi.c index 7d748fd616..4ef0e9901e 100644 --- a/dlls/gdi32/bidi.c +++ b/dlls/gdi32/bidi.c @@ -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);