summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-11-24 13:19:48 +0000
committertron <tron@openttd.org>2004-11-24 13:19:48 +0000
commitfca55e374145de586143a340aa46a72d4f0ea47a (patch)
tree6e8b137fdd6fb9f70b0ee8a7bceb369371a596aa /misc.c
parent0ea87b6473a11eb4d6e27275a5aa649165e79a14 (diff)
downloadopenttd-fca55e374145de586143a340aa46a72d4f0ea47a.tar.xz
(svn r793) Merge INLINE -> inline replacement (revision 376)
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index dcd7ae133..6e6bc1b42 100644
--- a/misc.c
+++ b/misc.c
@@ -10,7 +10,7 @@ extern void InitNewsItemStructs();
byte _name_array[512][32];
-static INLINE uint32 ROR(uint32 x, int n)
+static inline uint32 ROR(uint32 x, int n)
{
return (x >> n) + (x << ((sizeof(x)*8)-n));
}