summaryrefslogtreecommitdiff
path: root/src/saveload/storage_sl.cpp
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2018-08-13 23:44:49 +0200
committerMichael Lutz <michi@icosahedron.de>2018-09-02 21:31:15 +0200
commit4b0b4e06435b76e1cb40a8a65ccdc2307d48081d (patch)
tree47e3af88ac059780ed6604d0684f242c33a181d5 /src/saveload/storage_sl.cpp
parent6391d4927744407d6ea8b7336dad34565bc986d0 (diff)
downloadopenttd-4b0b4e06435b76e1cb40a8a65ccdc2307d48081d.tar.xz
Feature: [NewGRF] Increase size of persistent storage to 256.
Diffstat (limited to 'src/saveload/storage_sl.cpp')
-rw-r--r--src/saveload/storage_sl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/saveload/storage_sl.cpp b/src/saveload/storage_sl.cpp
index 110df63a7..04980c7c3 100644
--- a/src/saveload/storage_sl.cpp
+++ b/src/saveload/storage_sl.cpp
@@ -18,7 +18,8 @@
/** Description of the data to save and load in #PersistentStorage. */
static const SaveLoad _storage_desc[] = {
SLE_CONDVAR(PersistentStorage, grfid, SLE_UINT32, 6, SL_MAX_VERSION),
- SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 16, 161, SL_MAX_VERSION),
+ SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 16, 161, 200),
+ SLE_CONDARR(PersistentStorage, storage, SLE_UINT32, 256, 201, SL_MAX_VERSION),
SLE_END()
};