diff options
author | Erich Eckner <git@eckner.net> | 2017-09-26 13:31:23 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-09-26 13:31:23 +0200 |
commit | 7ed189c27c355ee57ec002629f2971ff95430a65 (patch) | |
tree | 0a6e2bd6ed5f40798003713890b5b746843ddb46 | |
parent | f9087da82461781ea6c7c45805f9d2ad58cce4af (diff) | |
download | epost-7ed189c27c355ee57ec002629f2971ff95430a65.tar.xz |
epostunit.pas: xFak,yFak nicht runden
-rw-r--r-- | epostunit.pas | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epostunit.pas b/epostunit.pas index 33cd61a..4a83049 100644 --- a/epostunit.pas +++ b/epostunit.pas @@ -3875,8 +3875,8 @@ begin continue; end; if istDasBefehl('Abstandsmetrik',s,bekannteBefehle,true) then begin - xFak:=round(kont2diskFak('x',exprToFloat(sT,erstesArgument(s)))); - yFak:=round(kont2diskFak('t',exprToFloat(sT,s))); + xFak:=kont2diskFak('x',exprToFloat(sT,erstesArgument(s))); + yFak:=kont2diskFak('t',exprToFloat(sT,s)); continue; end; bekannteBefehle.sort; @@ -3988,8 +3988,8 @@ begin continue; end; if istDasBefehl('Abstandsmetrik',s,bekannteBefehle,true) then begin - xFak:=round(kont2diskFak('x',exprToFloat(sT,erstesArgument(s)))); - yFak:=round(kont2diskFak('t',exprToFloat(sT,s))); + xFak:=kont2diskFak('x',exprToFloat(sT,erstesArgument(s))); + yFak:=kont2diskFak('t',exprToFloat(sT,s)); continue; end; bekannteBefehle.sort; |