From 291ca9a109169d5d8a3ad1f0b2b1fe4590f40240 Mon Sep 17 00:00:00 2001 From: zueuk Date: Fri, 25 Jul 2008 13:21:29 +0000 Subject: [PATCH] typo in hsv->rgb conversion fixed --- 2.10/Source/cmap.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.10/Source/cmap.pas b/2.10/Source/cmap.pas index 8d7ccf8..8f6285e 100644 --- a/2.10/Source/cmap.pas +++ b/2.10/Source/cmap.pas @@ -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;