industry_cmd.c
changeset 3344 fc86351d4641
parent 3338 7cff208f0446
child 3379 50b253bb9819
--- a/industry_cmd.c	Sun Mar 26 22:02:11 2006 +0000
+++ b/industry_cmd.c	Sun Mar 26 22:23:32 2006 +0000
@@ -82,9 +82,9 @@
 	const IndustryTileTable *const *table;
 	byte num_table;
 	byte a,b,c;
-	byte produced_cargo[2];
+	CargoID produced_cargo[2];
 	byte production_rate[2];
-	byte accepts_cargo[3];
+	CargoID accepts_cargo[3];
 	byte check_proc;
 } IndustrySpec;
 
@@ -858,7 +858,7 @@
 	return 0;
 }
 
-static void GetProducedCargo_Industry(TileIndex tile, byte *b)
+static void GetProducedCargo_Industry(TileIndex tile, CargoID *b)
 {
 	const Industry* i = GetIndustryByTile(tile);