(svn r14105) -Fix: Some typos that are more grammatical errors, as it seems.

Provided by ln
I've added a little fix on currency.cpp too, why not :)
This commit is contained in:
belugas
2008-08-20 01:38:12 +00:00
parent d096431936
commit 9506434539
8 changed files with 13 additions and 13 deletions

View File

@@ -956,11 +956,11 @@ static void _SetGeneratingWorldProgress(gwp_class cls, uint progress, uint total
/* Never display 0% */
if (_tp.percent == 0) return;
/* Reset if percent is lower then the last recorded */
/* Reset if percent is lower than the last recorded */
if (_tp.percent < last_percent) last_percent = 0;
/* Display every 5%, but 6% is also very valid.. just not smaller steps then 5% */
/* Display every 5%, but 6% is also very valid.. just not smaller steps than 5% */
if (_tp.percent % 5 != 0 && _tp.percent <= last_percent + 5) return;
/* Never show steps smaller then 2%, even if it is a mod 5% */
/* Never show steps smaller than 2%, even if it is a mod 5% */
if (_tp.percent <= last_percent + 2) return;
DEBUG(net, 1, "Map generation percentage complete: %d", _tp.percent);