summaryrefslogtreecommitdiff
path: root/src/fios.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2011-10-30 13:47:45 +0000
committeryexo <yexo@openttd.org>2011-10-30 13:47:45 +0000
commit433f74edd9fd3d9f3fed5cf09c7d6c510600b0aa (patch)
tree41ce1db0b149196cbda1c78d8abf9d6e720042d2 /src/fios.h
parentbd6d490987fe6767b8bb07ef9bf7753049c0c564 (diff)
downloadopenttd-433f74edd9fd3d9f3fed5cf09c7d6c510600b0aa.tar.xz
(svn r23065) -Add: -q option to read a savegame, write some general info and exit
Diffstat (limited to 'src/fios.h')
-rw-r--r--src/fios.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fios.h b/src/fios.h
index c34de10e9..bf354617d 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -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();
}