summaryrefslogtreecommitdiff
path: root/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'macros.h')
-rw-r--r--macros.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/macros.h b/macros.h
index 1cd554ebf..81eae88cb 100644
--- a/macros.h
+++ b/macros.h
@@ -151,9 +151,4 @@ static inline void swap_tile(TileIndex *a, TileIndex *b) { TileIndex t = *a; *a
}
#endif
-static inline void WRITE_LE_UINT16(void *b, uint16 x) {
- ((byte*)b)[0] = (byte)x;
- ((byte*)b)[1] = (byte)(x >> 8);
-}
-
#endif /* MACROS_H */