mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-05 17:05:19 -05:00
Small mistake in use of vars ;-).
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@569 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
parent
cae8fe3527
commit
f336a20625
@ -44,7 +44,7 @@ uses
|
||||
ColorBox , about, framefunctionlist, ocr, updateform, simbasettings;
|
||||
|
||||
const
|
||||
SimbaVersion = 565;
|
||||
SimbaVersion = 569;
|
||||
|
||||
type
|
||||
|
||||
|
@ -2140,11 +2140,11 @@ begin
|
||||
ColorToRGB(_dtm.c[i],clR[i],clG[i],clB[i]);
|
||||
//Compiler hints
|
||||
|
||||
SetLength(hh,dtm.l);
|
||||
SetLength(ss,dtm.l);
|
||||
SetLength(ll,dtm.l);
|
||||
for i := 0 to DTM.l - 1 do
|
||||
ColorToHSL(dtm.c[i],hh[i],ss[i],ll[i]);
|
||||
SetLength(hh,_dtm.l);
|
||||
SetLength(ss,_dtm.l);
|
||||
SetLength(ll,_dtm.l);
|
||||
for i := 0 to _DTM.l - 1 do
|
||||
ColorToHSL(_dtm.c[i],hh[i],ss[i],ll[i]);
|
||||
|
||||
GetToleranceSpeed2Modifiers(hMod, sMod);
|
||||
ccts := CTS;
|
||||
|
Loading…
Reference in New Issue
Block a user