(svn r14567) -Revert (part of 14566): don't commit testing stuff...

This commit is contained in:
rubidium
2008-11-07 18:02:46 +00:00
parent c7f3935506
commit 13ee151a69
3 changed files with 1 additions and 26 deletions

View File

@@ -598,15 +598,6 @@ static inline bool IsSnowRailGround(TileIndex t)
return GetRailGroundType(t) == RAIL_GROUND_ICE_DESERT;
}
static inline void UpdateStat(TileIndex t, bool on_track)
{
_me[t].m7 = _me[t].m7 << 1 | !!on_track;
}
static inline byte GetStat(TileIndex t)
{
return _me[t].m7;
}
static inline void MakeRailNormal(TileIndex t, Owner o, TrackBits b, RailType r)
{