Less precision - less confusion
authorunc0rr
Wed, 09 Nov 2011 18:40:12 +0300
changeset 6311 1f7af64d5565
parent 6310 31145a87811a
child 6312 658055a3f160
Less precision - less confusion
hedgewars/uFloat.pas
--- a/hedgewars/uFloat.pas	Tue Nov 08 22:05:33 2011 +0300
+++ b/hedgewars/uFloat.pas	Wed Nov 09 18:40:12 2011 +0300
@@ -312,7 +312,7 @@
 str(z.Round, cstr);
 if z.Frac <> 0 then
    begin
-   str(z.Frac / $100000000:1:15, tmpstr);
+   str(z.Frac / $100000000:1:10, tmpstr);
    delete(tmpstr, 1, 2);
    cstr:= cstr + '.' + tmpstr
    end;