diff options
author | peter1138 <peter1138@openttd.org> | 2007-05-01 06:43:18 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-05-01 06:43:18 +0000 |
commit | b2a7a49adcf8ab62366d2eac93dba2baae445d5c (patch) | |
tree | 88954a6b189e39dd5ab346dfe489d848f71bca55 | |
parent | 6f24a1ca7a244d52dc76e0068812d6e817c42919 (diff) | |
download | openttd-b2a7a49adcf8ab62366d2eac93dba2baae445d5c.tar.xz |
(svn r9758) -Fix (FS#756): Ignore bit 1 (axis) of station tile layouts
-rw-r--r-- | src/station_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 5682b8baf..7c0338985 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -935,7 +935,7 @@ int32 CmdBuildRailroadStation(TileIndex tile_org, uint32 flags, uint32 p1, uint3 int w = plat_len; do { byte layout = *layout_ptr++; - MakeRailStation(tile, st->owner, st->index, axis, layout, (RailType)GB(p2, 0, 4)); + MakeRailStation(tile, st->owner, st->index, axis, layout & ~1, (RailType)GB(p2, 0, 4)); SetCustomStationSpecIndex(tile, specindex); SetStationTileRandomBits(tile, GB(Random(), 0, 4)); @@ -943,7 +943,7 @@ int32 CmdBuildRailroadStation(TileIndex tile_org, uint32 flags, uint32 p1, uint3 /* Use a fixed axis for GetPlatformInfo as our platforms / numtracks are always the right way around */ uint32 platinfo = GetPlatformInfo(AXIS_X, 0, plat_len, numtracks_orig, plat_len - w, numtracks_orig - numtracks, false); uint16 callback = GetStationCallback(CBID_STATION_TILE_LAYOUT, platinfo, 0, statspec, st, tile); - if (callback != CALLBACK_FAILED && callback < 8) SetStationGfx(tile, callback + axis); + if (callback != CALLBACK_FAILED && callback < 8) SetStationGfx(tile, (callback & ~1) + axis); } tile += tile_delta; |