summaryrefslogtreecommitdiff
path: root/src/genworld_gui.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-08-20 01:38:12 +0000
committerbelugas <belugas@openttd.org>2008-08-20 01:38:12 +0000
commit9506434539cbcfb2756ee7d393075ffcb75c47cb (patch)
tree6535e6cecda9dc1aa99f537f39300637c95640aa /src/genworld_gui.cpp
parentd096431936f2a41ac84258073e04cc626f45ab9a (diff)
downloadopenttd-9506434539cbcfb2756ee7d393075ffcb75c47cb.tar.xz
(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 :)
Diffstat (limited to 'src/genworld_gui.cpp')
-rw-r--r--src/genworld_gui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp
index e421512dc..0114cfad9 100644
--- a/src/genworld_gui.cpp
+++ b/src/genworld_gui.cpp
@@ -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);