(svn r3341) -Codechange: make mingw32 happy, and renamed Rectangle, because it already exists on that platform
authortruelight
Sun, 25 Dec 2005 15:05:59 +0000
changeset 2793 d613eb566917
parent 2792 8295dd48c42c
child 2794 8695cc66b0af
(svn r3341) -Codechange: make mingw32 happy, and renamed Rectangle, because it already exists on that platform
station_cmd.c
--- a/station_cmd.c	Sun Dec 25 09:19:16 2005 +0000
+++ b/station_cmd.c	Sun Dec 25 15:05:59 2005 +0000
@@ -606,14 +606,14 @@
 	}
 }
 
-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 @@
 	uint old_acc, new_acc;
 	const RoadStop *cur_rs;
 	int i;
-	Rectangle rect;
+	ottd_Rectangle rect;
 	int rad;
 	AcceptedCargo accepts;