🚸 Progress display followup (#24879)
This commit is contained in:
committed by
Scott Lahteine
parent
c86f20010d
commit
0efeedf262
@ -84,12 +84,6 @@ const char* i8tostr3rj(const int8_t x) {
|
||||
conv[6] = DIGIMOD(xx, 10);
|
||||
return &conv[3];
|
||||
}
|
||||
else if (xx % 100 == 0) {
|
||||
conv[4] = ' ';
|
||||
conv[5] = RJDIGIT(xx, 1000);
|
||||
conv[6] = DIGIMOD(xx, 100);
|
||||
return &conv[4];
|
||||
}
|
||||
else {
|
||||
conv[3] = DIGIMOD(xx, 100);
|
||||
conv[4] = '.';
|
||||
|
Reference in New Issue
Block a user