CTS 3: Fix typo.

This commit is contained in:
Merlijn Wajer 2011-06-16 16:33:25 +02:00
parent 52db461f84
commit c837d9b960
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ begin
RGBToXYZ(R2, G2, B2, X, Y, Z);
XYZtoCIELab(X, Y, Z, L_2, a_2, b_2);
Result := Sqrt(sqr(L_1 - L_2) + sqr(a_1 - a_2) +
sqr(bb_1 - b_2)) <= Tolerance;
sqr(b_1 - b_2)) <= Tolerance;
end;
end;
end;