File diff r11792:98931d2141b0 → r11793:53a67e77b8b3
src/strings.cpp
Show inline comments
 
@@ -203,7 +203,7 @@ static char *FormatNumber(char *buff, in
 
			num = num % divisor;
 
		}
 
		if (tot |= quot || i == 19) {
 
			buff += seprintf(buff, last, "%i", quot);
 
			buff += seprintf(buff, last, "%i", (int)quot);
 
			if ((i % 3) == 1 && i != 19) buff = strecpy(buff, separator, last);
 
		}