summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index b5a33136d..b39fa40c7 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -3420,16 +3420,6 @@ static void Load_STNS()
Station *st = new (index) Station();
SaveLoad_STNS(st);
-
- /* this means it's an oldstyle savegame without support for nonuniform stations */
- if (st->train_tile != 0 && st->trainst_h == 0) {
- uint w = GB(st->trainst_w, 4, 4);
- uint h = GB(st->trainst_w, 0, 4);
-
- if (GetRailStationAxis(st->train_tile) != AXIS_X) Swap(w, h);
- st->trainst_w = w;
- st->trainst_h = h;
- }
}
/* This is to ensure all pointers are within the limits of _stations_size */