summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-02-22 18:34:57 +0000
committertron <tron@openttd.org>2007-02-22 18:34:57 +0000
commit426d95636740ea8a44d4b76b960be0ceec6f07ba (patch)
tree4d472a1d5f021c6133d292b378f4217ad8be8151 /src
parent9cf01ff43294f26884fc8055a2c4a773b529990d (diff)
downloadopenttd-426d95636740ea8a44d4b76b960be0ceec6f07ba.tar.xz
(svn r8845) -Fix
Remove pointless and out of context comment
Diffstat (limited to 'src')
-rw-r--r--src/macros.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/macros.h b/src/macros.h
index d48903b90..66c0eefc3 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -181,8 +181,6 @@ static inline uint16 ReadLE16Unaligned(const void* x)
#define ALIGN(x, n) (((x) + (n) - 1) & ~((n) - 1))
/** return the largest value that can be entered in a variable.
- * known to work for uint32.
- * used by TGP to set the max value of the _patches.generation_seed in its definition
*/
#define MAX_UVALUE(type) ((type)~(type)0)