Skip to content

Commit

Permalink
Update lape
Browse files Browse the repository at this point in the history
  • Loading branch information
ollydev committed Mar 19, 2024
1 parent 6676be8 commit 5dcffd6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified Source/Simba.res
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/array/simba.array_point.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2707,7 +2707,7 @@ function TPointArrayHelper.Median: TPoint;

Mid := Length(Self) div 2;

if (Mid mod 2) = 0 then
if (Length(Self) mod 2) = 0 then
begin
Result.X := X[Mid];
Result.Y := Y[Mid];
Expand Down

0 comments on commit 5dcffd6

Please sign in to comment.