(svn r2060) Clean up some string construction and remove now unused macro

This commit is contained in:
tron
2005-03-25 14:19:33 +00:00
parent 6d75cce924
commit 9832a691fe
3 changed files with 13 additions and 21 deletions

View File

@@ -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 */