summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-06-17 14:35:16 +0200
committerErich Eckner <git@eckner.net>2020-06-17 14:35:16 +0200
commit683c88ccbb29402a9bf7b290952258a44486b138 (patch)
treed418cf663116da338a191eac35ad124307c2f24f
parentfda3f072a911c85954eb7e9d51db9d6835173010 (diff)
downloadepost-683c88ccbb29402a9bf7b290952258a44486b138.tar.xz
epostunit.pas: ladeAscii repariert für nicht-quadratischen input
-rw-r--r--epostunit.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/epostunit.pas b/epostunit.pas
index 7e16543..36018ff 100644
--- a/epostunit.pas
+++ b/epostunit.pas
@@ -2743,7 +2743,7 @@ begin
end;
if (pos(',',t)>0) and (pos('e',t)=0) and (pos('E',t)=0) then t:=t+'0';
if not sT then
- eWerte.werte[j+i*_tSiz]:=strToFloat(t);
+ eWerte.werte[j+i*_xSteps]:=strToFloat(t);
inc(k);
end;
end;