Industrial/LCDDisplay: Fix crash in ClearEditorGrid.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8320 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2022-06-20 07:10:40 +00:00
parent db469cccb7
commit 9a0f172f52

View File

@ -357,7 +357,7 @@ procedure TLCDCharDefsEditor.ClearEditorGrid;
var
i: integer;
begin
for i := 0 to High(FTmpDotRows[i]) do
for i := 0 to High(FTmpDotRows) do
FTmpDotRows[i] := 0;
end;