diff options
author | truelight <truelight@openttd.org> | 2007-07-24 12:29:47 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-07-24 12:29:47 +0000 |
commit | 01d08680e188b88a4c0fe8897a273606bfb6e7ce (patch) | |
tree | 21e3927db5edb8482b500ece56bafad8f2cbbe56 | |
parent | d87359a827c54afcc1d449c73fe576f413a4df38 (diff) | |
download | openttd-01d08680e188b88a4c0fe8897a273606bfb6e7ce.tar.xz |
(svn r10671) -Codechange: don't mix both lookup and temp-variable-with-value-of-lookup (skidd13)
-rw-r--r-- | src/strings.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/strings.cpp b/src/strings.cpp index 03ee082b8..4ea1bc273 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -241,7 +241,7 @@ static const uint32 _divisor_table[] = { // TODO static char *FormatCommaNumber(char *buff, int32 number, const char* last) { - uint32 quot,divisor; + uint32 quot; int i; uint32 tot; uint32 num; @@ -255,9 +255,8 @@ static char *FormatCommaNumber(char *buff, int32 number, const char* last) tot = 0; for (i = 0; i != 10; i++) { - divisor = _divisor_table[i]; quot = 0; - if (num >= divisor) { + if (num >= _divisor_table[i]) { quot = num / _divisor_table[i]; num = num % _divisor_table[i]; } @@ -275,7 +274,7 @@ static char *FormatCommaNumber(char *buff, int32 number, const char* last) // TODO static char *FormatNoCommaNumber(char *buff, int32 number, const char* last) { - uint32 quot,divisor; + uint32 quot; int i; uint32 tot; uint32 num; @@ -289,9 +288,8 @@ static char *FormatNoCommaNumber(char *buff, int32 number, const char* last) tot = 0; for (i = 0; i != 10; i++) { - divisor = _divisor_table[i]; quot = 0; - if (num >= divisor) { + if (num >= _divisor_table[i]) { quot = num / _divisor_table[i]; num = num % _divisor_table[i]; } |