ftostr32np > ftostr32sp

sp=space-padded, similar to: ns=no-sign
This commit is contained in:
Scott Lahteine
2014-12-22 17:11:35 -08:00
parent bdf2c94bff
commit d080027ff4
3 changed files with 3 additions and 3 deletions

View File

@@ -1444,7 +1444,7 @@ char *ftostr12ns(const float &x)
}
// convert float to space-padded string with -_23.4_ format
char *ftostr32np(const float &x) {
char *ftostr32sp(const float &x) {
long xx = abs(x * 100);
uint8_t dig;