1
0
Fork 0

(svn r17908) -Fix [FS#3288]: uninitialised values in some paths of loading TTO savegames

release/1.0
rubidium 2009-10-30 23:24:17 +00:00
parent abbaed60d3
commit ee2d790b34
1 changed files with 5 additions and 5 deletions

View File

@ -433,12 +433,12 @@ static bool FixTTOEngines()
}
}
e->info.climates = 1;
}
e->preview_company_rank = 0;
e->preview_wait = 0;
e->name = NULL;
e->info.climates = 1;
}
}
return true;