File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1715,7 +1715,7 @@ procedure Batch_SetInt32Array(batch: TDSSObjectPtr; batchSize: Integer; Index: I
1715
1715
// Faster path
1716
1716
for i := 1 to batchSize do
1717
1717
begin
1718
- if (allowNA) or (Value ^ = $80000000 ) then
1718
+ if (allowNA) or (Value ^ <> $80000000 ) then
1719
1719
begin
1720
1720
// check for each element, in case the element is being edited somewhere else
1721
1721
singleEdit := not (Flg.EditingActive in batch^.Flags);
@@ -1738,7 +1738,7 @@ procedure Batch_SetInt32Array(batch: TDSSObjectPtr; batchSize: Integer; Index: I
1738
1738
1739
1739
for i := 1 to batchSize do
1740
1740
begin
1741
- if (allowNA) or (Value ^ = $80000000 ) then
1741
+ if (allowNA) or (Value ^ <> $80000000 ) then
1742
1742
batch^.SetInteger(Index, Value ^, setterFlags);
1743
1743
inc(batch);
1744
1744
inc(Value )
You can’t perform that action at this time.
0 commit comments