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 10e1b6ef8b
commit e7db8ee9e5
3 changed files with 3 additions and 3 deletions

View File

@ -1497,7 +1497,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;