typo in hsv->rgb conversion fixed

This commit is contained in:
zueuk 2008-07-25 13:21:29 +00:00
parent 922d06e278
commit 291ca9a109

View File

@ -100,7 +100,7 @@ begin
2: begin rgb[0] := p; rgb[1] := v; rgb[2] := t; end;
3: begin rgb[0] := p; rgb[1] := q; rgb[2] := v; end;
4: begin rgb[0] := t; rgb[1] := p; rgb[2] := v; end;
5: begin rgb[0] := v; rgb[1] := p; rgb[2] := t; end;
5: begin rgb[0] := v; rgb[1] := p; rgb[2] := q; end;
end;
except on EMathError do
end;