From 9832a691fe1db29d9564c4fbea0c057faa1e030c Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 25 Mar 2005 14:19:33 +0000 Subject: (svn r2060) Clean up some string construction and remove now unused macro --- macros.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'macros.h') 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 */ -- cgit v1.2.3-54-g00ecf