mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 19:26:09 +02:00
* Remove += operators
git-svn-id: trunk@1990 -
This commit is contained in:
parent
675d051274
commit
d28e5e9318
@ -197,7 +197,7 @@ Begin
|
||||
End;
|
||||
End;
|
||||
|
||||
error += Round(Sqrt(mindist) * 290);
|
||||
error:=error+round(Sqrt(mindist) * 290);
|
||||
Case dither Of
|
||||
0 : best2 := best1;
|
||||
1 : Begin
|
||||
@ -226,7 +226,7 @@ Begin
|
||||
b := s[0];
|
||||
g := s[1];
|
||||
r := s[2];
|
||||
CGACalcError += precalcerror[back, pal]^[b Shr 4, g Shr 4, r Shr 4];
|
||||
inc(CGACalcError,precalcerror[back, pal]^[b Shr 4, g Shr 4, r Shr 4]);
|
||||
Inc(s, 4{ + 4 + 4 + 4});
|
||||
End;
|
||||
// Inc(s, 320*4*3);
|
||||
|
Loading…
Reference in New Issue
Block a user