summaryrefslogtreecommitdiff
path: root/src/macros.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2007-01-24 21:23:35 +0000
committerDarkvater <darkvater@openttd.org>2007-01-24 21:23:35 +0000
commit9727bb4cfc954b5ecf18a3cf81cbc8c541b14d7d (patch)
tree83d80451f979c4ed9bae7e813e15cef726630bf4 /src/macros.h
parentfb5a0ba6dfdd4f518e9ba9b8608f22442eee5309 (diff)
downloadopenttd-9727bb4cfc954b5ecf18a3cf81cbc8c541b14d7d.tar.xz
(svn r8398) -Cleanup: Remove WATCOM crud from strgen and map.h include from macros.h as it is no longer needed.
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/macros.h b/src/macros.h
index cd644b579..2471a12f8 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -3,8 +3,6 @@
#ifndef MACROS_H
#define MACROS_H
-#include "map.h"
-
/// Fetch n bits starting at bit s from x
#define GB(x, s, n) (((x) >> (s)) & ((1U << (n)) - 1))
/// Set n bits starting at bit s in x to d