From 9506434539cbcfb2756ee7d393075ffcb75c47cb Mon Sep 17 00:00:00 2001 From: belugas Date: Wed, 20 Aug 2008 01:38:12 +0000 Subject: (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 :) --- src/genworld_gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/genworld_gui.cpp') 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); -- cgit v1.2.3-54-g00ecf