summaryrefslogtreecommitdiff
path: root/src/core/bitmath_func.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-12-10 22:26:24 +0000
committerrubidium <rubidium@openttd.org>2007-12-10 22:26:24 +0000
commit28c436a054f834176fcaae12fcc1753a1525e089 (patch)
treec567c5687d1d60dfa3feffb7d149f848ed838bf2 /src/core/bitmath_func.hpp
parent4320447aef966b80cd87ed0044257d47124a5b38 (diff)
downloadopenttd-28c436a054f834176fcaae12fcc1753a1525e089.tar.xz
(svn r11616) -Fix [FS#1526]: sometimes large values could go off the chart.
Diffstat (limited to 'src/core/bitmath_func.hpp')
-rw-r--r--src/core/bitmath_func.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bitmath_func.hpp b/src/core/bitmath_func.hpp
index f4c6ff0bc..357a52212 100644
--- a/src/core/bitmath_func.hpp
+++ b/src/core/bitmath_func.hpp
@@ -211,7 +211,7 @@ static inline uint8 FindFirstBit2x64(const int value)
}
uint8 FindFirstBit(uint32 x);
-uint8 FindLastBit(uint32 x);
+uint8 FindLastBit(uint64 x);
/**
* Clear the first bit in an integer.