From 421a997085844bac9e40ca79992abde170d5f39d Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Fri, 7 May 2010 22:10:26 -0500 Subject: [PATCH] usp10: Add ETO_IGNORELANGUAGE when calling ExtTextOut so we do not re-reverse already formated RTL strings inside of GDI. --- dlls/usp10/usp10.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index 43a3b5e234e..b9294e23e36 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c @@ -1600,6 +1600,7 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN if (!piAdvance || !psa || !pwGlyphs) return E_INVALIDARG; fuOptions &= ETO_CLIPPED + ETO_OPAQUE; + fuOptions |= ETO_IGNORELANGUAGE; if (!psa->fNoGlyphIndex) /* Have Glyphs? */ fuOptions |= ETO_GLYPH_INDEX; /* Say don't do translation to glyph */ -- 2.11.4.GIT