src/vehicle_gui.h
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6223 92d2073c3d7e
child 9907 3b068c3a1c74
--- a/src/vehicle_gui.h	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/vehicle_gui.h	Mon Mar 19 12:38:16 2007 +0000
@@ -8,11 +8,11 @@
 
 void DrawVehicleProfitButton(const Vehicle *v, int x, int y);
 void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order);
-void InitializeVehiclesGuiList(void);
+void InitializeVehiclesGuiList();
 
 /* sorter stuff */
-void RebuildVehicleLists(void);
-void ResortVehicleLists(void);
+void RebuildVehicleLists();
+void ResortVehicleLists();
 
 #define PERIODIC_RESORT_DAYS 10
 
@@ -56,17 +56,17 @@
 static inline void DrawVehicleImage(const Vehicle *v, int x, int y, int count, int skip, VehicleID selection)
 {
 	switch (v->type) {
-		case VEH_Train:    DrawTrainImage(v, x, y, count, skip, selection); break;
-		case VEH_Road:     DrawRoadVehImage(v, x, y, selection);            break;
-		case VEH_Ship:     DrawShipImage(v, x, y, selection);               break;
-		case VEH_Aircraft: DrawAircraftImage(v, x, y, selection);           break;
+		case VEH_TRAIN:    DrawTrainImage(v, x, y, count, skip, selection); break;
+		case VEH_ROAD:     DrawRoadVehImage(v, x, y, selection);            break;
+		case VEH_SHIP:     DrawShipImage(v, x, y, selection);               break;
+		case VEH_AIRCRAFT: DrawAircraftImage(v, x, y, selection);           break;
 		default: NOT_REACHED();
 	}
 }
 
 static inline uint GetVehicleListHeight(byte type)
 {
-	return (type == VEH_Train || type == VEH_Road) ? 14 : 24;
+	return (type == VEH_TRAIN || type == VEH_ROAD) ? 14 : 24;
 }
 
 #endif /* VEHICLE_GUI_H */