diff options
Diffstat (limited to 'station_cmd.c')
-rw-r--r-- | station_cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/station_cmd.c b/station_cmd.c index 03632fc59..cd126adf3 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -634,10 +634,13 @@ static void UpdateStationAcceptance(Station *st, bool show_msg) uint old_acc, new_acc; const RoadStop *cur_rs; int i; - Rectangle rect = { MapSizeX(), MapSizeY(), 0, 0 }; + Rectangle rect; int rad; AcceptedCargo accepts; + rect.min_x = MapSizeX(); + rect.min_y = MapSizeY(); + rect.max_x = rect.max_y = 0; // Don't update acceptance for a buoy if (st->had_vehicle_of_type & HVOT_BUOY) return; |