(svn r20918) -Add: Store NewGRF version information from Action14 in savegame. (planetmaker)

This commit is contained in:
frosch 2010-10-12 17:47:15 +00:00
parent d78dabfa51
commit 3866ecad38
2 changed files with 3 additions and 1 deletions

View File

@ -52,6 +52,7 @@ static const SaveLoad _grfconfig_desc[] = {
SLE_STR(GRFConfig, filename, SLE_STR, 0x40),
SLE_VAR(GRFConfig, ident.grfid, SLE_UINT32),
SLE_ARR(GRFConfig, ident.md5sum, SLE_UINT8, 16),
SLE_CONDVAR(GRFConfig, version, SLE_UINT32, 151, SL_MAX_VERSION),
SLE_ARR(GRFConfig, param, SLE_UINT32, 0x80),
SLE_VAR(GRFConfig, num_params, SLE_UINT8),
SLE_CONDVAR(GRFConfig, palette, SLE_UINT8, 101, SL_MAX_VERSION),

View File

@ -213,8 +213,9 @@
* 148 20659
* 149 20832
* 150 20857
* 151 20918
*/
extern const uint16 SAVEGAME_VERSION = 150; ///< current savegame version of OpenTTD
extern const uint16 SAVEGAME_VERSION = 151; ///< current savegame version of OpenTTD
SavegameType _savegame_type; ///< type of savegame we are loading