diff options
author | glx <glx@openttd.org> | 2008-05-26 20:20:38 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-05-26 20:20:38 +0000 |
commit | b3d7ca0ceb6a9ba717e1bf0ee85459c6141054fc (patch) | |
tree | ff079ed6c9a34ca5c646d1c64c44d2dbb72ee25b /src/core | |
parent | 16cee252a7117c004cd0b26d64e1a41123215147 (diff) | |
download | openttd-b3d7ca0ceb6a9ba717e1bf0ee85459c6141054fc.tar.xz |
(svn r13273) -Fix [FS#2042]: MSVC warnings (again)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/bitmath_func.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bitmath_func.hpp b/src/core/bitmath_func.hpp index 775ae8338..dd93b11d9 100644 --- a/src/core/bitmath_func.hpp +++ b/src/core/bitmath_func.hpp @@ -97,7 +97,7 @@ template<typename T> static inline bool HasBit(const T x, const uint8 y) * @param y The second value * @return True if at least one bit is set in both values, false else. */ -#define HASBITS(x, y) ((x) & (y)) +#define HASBITS(x, y) (((x) & (y)) != 0) /** * Set a bit in a variable. |