src/unmovable_map.h
changeset 5838 9c3129cb019b
parent 5726 8f399788f6c9
child 6298 c30fe89622df
child 6574 e1d1a12faaf7
equal deleted inserted replaced
5837:96b4b92b86ae 5838:9c3129cb019b
    24 
    24 
    25 
    25 
    26 static inline UnmovableType GetUnmovableType(TileIndex t)
    26 static inline UnmovableType GetUnmovableType(TileIndex t)
    27 {
    27 {
    28 	assert(IsTileType(t, MP_UNMOVABLE));
    28 	assert(IsTileType(t, MP_UNMOVABLE));
    29 	return _m[t].m5;
    29 	return (UnmovableType)_m[t].m5;
    30 }
    30 }
    31 
    31 
    32 
    32 
    33 static inline bool IsTransmitterTile(TileIndex t)
    33 static inline bool IsTransmitterTile(TileIndex t)
    34 {
    34 {