File diff r9745:cf2338c8f415 → r9746:f0449b2590ca
src/newgrf.cpp
Show inline comments
 
@@ -5743,25 +5743,12 @@ static void FinaliseIndustriesArray()
 
				indsp->conflicting[i] = MapNewGRFIndustryType(indsp->conflicting[i], indsp->grf_prop.grffile->grfid);
 
			}
 
		}
 
	}
 
}
 

	
 
/** Each cargo string needs to be mapped from TTDPatch to OpenTTD string IDs.
 
 * This is done after loading so that strings from Action 4 will be mapped
 
 * properly. */
 
static void MapNewCargoStrings()
 
{
 
	for (CargoID c = 0; c < NUM_CARGO; c++) {
 
		CargoSpec *cs = &_cargo[c];
 
		/* Don't map if the cargo is unavailable or not from NewGRF */
 
		if (cs->grfid == 0) continue;
 
	}
 
}
 

	
 

	
 
/* Here we perform initial decoding of some special sprites (as are they
 
 * described at http://www.ttdpatch.net/src/newgrf.txt, but this is only a very
 
 * partial implementation yet). */
 
/* XXX: We consider GRF files trusted. It would be trivial to exploit OTTD by
 
 * a crafted invalid GRF file. We should tell that to the user somehow, or
 
 * better make this more robust in the future. */
 
@@ -6003,16 +5990,12 @@ static void AfterLoadGRFs()
 
	/* Add all new industries to the industry array. */
 
	FinaliseIndustriesArray();
 

	
 
	/* Create dynamic list of industry legends for smallmap_gui.cpp */
 
	BuildIndustriesLegend();
 

	
 
	/* Map cargo strings. This is a separate step because cargos are
 
	 * loaded before strings... */
 
	MapNewCargoStrings();
 

	
 
	/* Update the townname generators list */
 
	InitGRFTownGeneratorNames();
 

	
 
	/* Run all queued vehicle list order changes */
 
	CommitVehicleListOrderChanges();