# HG changeset patch # User truelight # Date 2005-12-25 15:05:59 # Node ID d1e70008d1a4197c435067bb6cd9d0e9b0d4b29d # Parent 0462813fcc44b46976b4bb895a551182d4c65557 (svn r3341) -Codechange: make mingw32 happy, and renamed Rectangle, because it already exists on that platform diff --git a/station_cmd.c b/station_cmd.c --- a/station_cmd.c +++ b/station_cmd.c @@ -606,14 +606,14 @@ void GetAcceptanceAroundTiles(AcceptedCa } } -typedef struct Rectangle { +typedef struct ottd_Rectangle { uint min_x; uint min_y; uint max_x; uint max_y; -} Rectangle; - -static void MergePoint(Rectangle* rect, TileIndex tile) +} ottd_Rectangle; + +static void MergePoint(ottd_Rectangle* rect, TileIndex tile) { uint x = TileX(tile); uint y = TileY(tile); @@ -631,7 +631,7 @@ static void UpdateStationAcceptance(Stat uint old_acc, new_acc; const RoadStop *cur_rs; int i; - Rectangle rect; + ottd_Rectangle rect; int rad; AcceptedCargo accepts;