summaryrefslogtreecommitdiff
path: root/src/saveload/storage_sl.cpp
diff options
context:
space:
mode:
authorPeter Nelson <peter1138@openttd.org>2019-02-01 22:46:12 +0000
committerPeterN <peter@fuzzle.org>2019-02-02 21:39:06 +0000
commite21ade375ee008fa32db8e154f14fb18b37e8dc7 (patch)
tree839d5687fd190157355f414b30b060f7d50af2a4 /src/saveload/storage_sl.cpp
parent0f37a683a2360c7cb3d56fc828b96d7ee7e997f0 (diff)
downloadopenttd-e21ade375ee008fa32db8e154f14fb18b37e8dc7.tar.xz
Codechange: Change from numeric to descriptive SLV enum labels for last entries.
Diffstat (limited to 'src/saveload/storage_sl.cpp')
-rw-r--r--src/saveload/storage_sl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/storage_sl.cpp b/src/saveload/storage_sl.cpp
index 1c6c44248..1396d25ae 100644
--- a/src/saveload/storage_sl.cpp
+++ b/src/saveload/storage_sl.cpp
@@ -18,8 +18,8 @@
/** Description of the data to save and load in #PersistentStorage. */
static const SaveLoad _storage_desc[] = {
SLE_CONDVAR(PersistentStorage, grfid, SLE_UINT32, SLV_6, SL_MAX_VERSION),
- SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 16, SLV_161, SLV_201),
- SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 256, SLV_201, SL_MAX_VERSION),
+ SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 16, SLV_161, SLV_EXTEND_PERSISTENT_STORAGE),
+ SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 256, SLV_EXTEND_PERSISTENT_STORAGE, SL_MAX_VERSION),
SLE_END()
};