diff options
author | rubidium <rubidium@openttd.org> | 2010-09-16 16:28:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-09-16 16:28:40 +0000 |
commit | 9a0a753d9610e258b602c465ef02b703c1ad9457 (patch) | |
tree | 09d2d2bf6e767ae72ecdce5ed3cf47a662e77ebd /src/saveload | |
parent | 7a88433228faeb858e7e53a86a237c61e3d4eea1 (diff) | |
download | openttd-9a0a753d9610e258b602c465ef02b703c1ad9457.tar.xz |
(svn r20814) -Codechange [FS#3835]: make waypoint default names work like depots, stations and vehicles (Krille)
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/saveload.cpp | 3 | ||||
-rw-r--r-- | src/saveload/station_sl.cpp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/saveload/saveload.cpp b/src/saveload/saveload.cpp index ba2178717..ce604d0a6 100644 --- a/src/saveload/saveload.cpp +++ b/src/saveload/saveload.cpp @@ -211,8 +211,9 @@ * 146 20446 * 147 20621 * 148 20659 + * 149 TODO */ -extern const uint16 SAVEGAME_VERSION = 148; ///< current savegame version of OpenTTD +extern const uint16 SAVEGAME_VERSION = 149; ///< current savegame version of OpenTTD SavegameType _savegame_type; ///< type of savegame we are loading diff --git a/src/saveload/station_sl.cpp b/src/saveload/station_sl.cpp index 72d7c7ecf..dabb3e251 100644 --- a/src/saveload/station_sl.cpp +++ b/src/saveload/station_sl.cpp @@ -238,6 +238,7 @@ const SaveLoad *GetGoodsDesc() SLE_VAR(GoodsEntry, last_age, SLE_UINT8), SLEG_CONDVAR( _cargo_feeder_share, SLE_FILE_U32 | SLE_VAR_I64, 14, 64), SLEG_CONDVAR( _cargo_feeder_share, SLE_INT64, 65, 67), + SLE_CONDVAR(GoodsEntry, amount_fract, SLE_UINT8, 149, SL_MAX_VERSION), SLE_CONDLST(GoodsEntry, cargo.packets, REF_CARGO_PACKET, 68, SL_MAX_VERSION), SLE_END() |