summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authormiham <miham@openttd.org>2004-12-29 13:13:29 +0000
committermiham <miham@openttd.org>2004-12-29 13:13:29 +0000
commit57852f64988b92fa7d9031ea76aa89b67d08c4f6 (patch)
tree66526ea5c00e53199cc02447a0970c13b4e8175e /misc.c
parent14dfb539b06bb9ad411dbcf6e4141f189713a099 (diff)
downloadopenttd-57852f64988b92fa7d9031ea76aa89b67d08c4f6.tar.xz
(svn r1297) Language fixes in the source.. (ln-)
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index a96d09eb1..922a3f157 100644
--- a/misc.c
+++ b/misc.c
@@ -713,10 +713,10 @@ void IncreaseDate()
int FindFirstBit(uint32 value)
{
- // This is much faster then the one that was before here.
+ // This is much faster than the one that was before here.
// Created by Darkvater.. blame him if it is wrong ;)
// Btw, the macro FINDFIRSTBIT is better to use when your value is
- // not more then 128.
+ // not more than 128.
byte i = 0;
if (value & 0xffff0000) { value >>= 16; i += 16; }
if (value & 0x0000ff00) { value >>= 8; i += 8; }