src/gui.h
changeset 7241 7fd23b6f6713
parent 6990 136a08baf0ed
child 7486 bf6a94009823
--- a/src/gui.h	Thu Jul 12 13:25:06 2007 +0000
+++ b/src/gui.h	Thu Jul 12 13:40:24 2007 +0000
@@ -108,7 +108,13 @@
 void ShowEstimatedCostOrIncome(Money cost, int x, int y);
 void ShowErrorMessage(StringID msg_1, StringID msg_2, int x, int y);
 
-void DrawStationCoverageAreaText(int sx, int sy, uint mask,int rad);
+enum StationCoverageType {
+	SCT_PASSENGERS_ONLY,
+	SCT_NON_PASSENGERS_ONLY,
+	SCT_ALL
+};
+
+void DrawStationCoverageAreaText(int sx, int sy, StationCoverageType sct, int rad);
 void CheckRedrawStationCoverage(const Window *w);
 
 void ShowSmallMap();