Change some of the number seperators to "Neutral" rather than "Left to

right".
This commit is contained in:
Shachar Shemesh 2002-11-25 21:09:49 +00:00 committed by Alexandre Julliard
parent a2e1222486
commit 3597717da1

View File

@ -1988,7 +1988,7 @@ GetCharacterPlacementW(
* -1 - right to left
* 0 - neutral
*/
static const int chardir[]={ 0, 1, -1, 1, 1, 1, -1, 1, 0, 0, 0, 0 };
static const int chardir[]={ 0, 1, -1, 1, 0, 0, -1, 0, 0, 0, 0, 0 };
WARN("The BiDi algorythm doesn't conform to Windows' yet\n");
if( (pwCharType=HeapAlloc(GetProcessHeap(), 0, uCount * sizeof(WORD)))==NULL )