dock_gui.c
changeset 568 6eb7d394fb35
parent 543 e3b43338096b
child 606 0e507bb0f63a
--- a/dock_gui.c	Wed Dec 08 15:26:57 2004 +0000
+++ b/dock_gui.c	Wed Dec 08 15:46:13 2004 +0000
@@ -2,6 +2,7 @@
 #include "ttd.h"
 #include "table/strings.h"
 #include "window.h"
+#include "station.h"
 #include "gui.h"
 #include "viewport.h"
 #include "gfx.h"
@@ -203,12 +204,21 @@
 
 static void BuildDockStationWndProc(Window *w, WindowEvent *e)
 {
+	int rad;
+	
 	switch(e->event) {
 	case WE_PAINT: {
 		if (WP(w,def_d).close)
 			return;
 		DrawWindowWidgets(w);
-		DrawStationCoverageAreaText(2, 15, (uint)-1);
+		//Add some code for the coverage area eariler or later!!
+		if (_patches.modified_catchment) {
+			rad = CA_DOCK;
+		} else {
+			rad = 4;
+		}
+		
+		DrawStationCoverageAreaText(2, 15, (uint)-1, rad);
 	} break;
 
 	case WE_CLICK: {