station_cmd.c
changeset 500 ef288590e096
parent 497 2d6d31173813
child 507 8aa8100b0b22
--- a/station_cmd.c	Wed Nov 24 12:47:25 2004 +0000
+++ b/station_cmd.c	Wed Nov 24 13:19:48 2004 +0000
@@ -2119,7 +2119,7 @@
 	}
 }
 
-static INLINE bool IsTrainStationTile(uint tile) {
+static inline bool IsTrainStationTile(uint tile) {
 	return IS_TILETYPE(tile, MP_STATION) && IS_BYTE_INSIDE(_map5[tile], 0, 8);
 }
 
@@ -2233,7 +2233,7 @@
 	}
 }
 
-static INLINE void byte_inc_sat(byte *p) { byte b = *p + 1; if (b != 0) *p = b; }
+static inline void byte_inc_sat(byte *p) { byte b = *p + 1; if (b != 0) *p = b; }
 
 static byte _rating_boost[3] = { 0, 31, 63};