Commit a34adbef authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

usp10: Remove redundant comparison.

parent 1ae09d5f
......@@ -2641,7 +2641,7 @@ HRESULT WINAPI ScriptCPtoX(int iCP,
iPosX = 0.0;
for (item=0; item < iCP && item < cChars; item++)
{
if (iSpecial == -1 && (iCluster == -1 || (iCluster != -1 && iCluster+clust_size <= item)))
if (iSpecial == -1 && (iCluster == -1 || iCluster+clust_size <= item))
{
int check;
int clust = pwLogClust[item];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment