(svn r23065) -Add: -q option to read a savegame, write some general info and exit

This commit is contained in:
yexo
2011-10-30 13:47:45 +00:00
parent bd6d490987
commit 433f74edd9
7 changed files with 123 additions and 7 deletions

View File

@@ -37,7 +37,10 @@ struct LoadCheckData {
GRFConfig *grfconfig; ///< NewGrf configuration from save.
GRFListCompatibility grf_compatibility; ///< Summary state of NewGrfs, whether missing files or only compatible found.
LoadCheckData() : error_data(NULL), grfconfig(NULL)
struct LoggedAction *gamelog_action; ///< Gamelog actions
uint gamelog_actions; ///< Number of gamelog actions
LoadCheckData() : error_data(NULL), grfconfig(NULL), gamelog_action(NULL)
{
this->Clear();
}