1
0
Fork 0

(svn r27291) -Fix (r27278) [FS#6303]: Some savegame data was discarded again during loading.

release/1.6
frosch 2015-05-21 18:59:11 +00:00
parent 10466746b4
commit a97e7bae65
1 changed files with 3 additions and 1 deletions

View File

@ -160,7 +160,9 @@ static void Save_ITBL()
/** Load industry-type build data. */ /** Load industry-type build data. */
static void Load_ITBL() static void Load_ITBL()
{ {
_industry_builder.Reset(); for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
_industry_builder.builddata[it].Reset();
}
int index; int index;
while ((index = SlIterateArray()) != -1) { while ((index = SlIterateArray()) != -1) {
if ((uint)index >= NUM_INDUSTRYTYPES) SlErrorCorrupt("Too many industry builder datas"); if ((uint)index >= NUM_INDUSTRYTYPES) SlErrorCorrupt("Too many industry builder datas");