1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Fixed rounding

This commit is contained in:
Brian Fiete 2020-04-28 09:57:32 -07:00
parent 3a332a0bcf
commit d79a7b76b4

View file

@ -69,6 +69,7 @@ namespace System
curValue = Round(curValue);
}
curValue /= power10;
return curValue;
}
return value;
}
@ -94,6 +95,7 @@ namespace System
curValue = Round(curValue);
}
curValue /= power10;
return curValue;
}
return value;
}