fbt format

This commit is contained in:
MX
2024-07-08 07:37:28 +03:00
parent 646bc7db23
commit e4f315188b
8 changed files with 14 additions and 12 deletions

View File

@@ -402,7 +402,8 @@ uint32_t round_int(uint32_t value, uint8_t n) {
value /= 10;
if(i >= 5) value++;
}
while(on--) value *= 10;
while(on--)
value *= 10;
return value;
}