summaryrefslogtreecommitdiff
path: root/order_cmd.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-03-16 00:20:33 +0000
committerDarkvater <darkvater@openttd.org>2006-03-16 00:20:33 +0000
commitd9ee10d3b835e713a117df6f8ffae20e3bf3b27e (patch)
treeac6cdd2863b4bb080d7d84f5549642dad620393f /order_cmd.c
parent61bb1d5b9af4e8a5d49fc8b70b2749e35f4861d1 (diff)
downloadopenttd-d9ee10d3b835e713a117df6f8ffae20e3bf3b27e.tar.xz
(svn r3895) - Add proper SLE(G)_CONDNULL macros for the empty space reservation in savegames and update where used
- Also add this capability to settings
Diffstat (limited to 'order_cmd.c')
-rw-r--r--order_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/order_cmd.c b/order_cmd.c
index 38a2b8d80..620639342 100644
--- a/order_cmd.c
+++ b/order_cmd.c
@@ -1100,7 +1100,7 @@ static const SaveLoad _order_desc[] = {
SLE_REF(Order,next, REF_ORDER),
// reserve extra space in savegame here. (currently 10 bytes)
- SLE_CONDARR(NullStruct,null,SLE_FILE_U8 | SLE_VAR_NULL, 10, 5, SL_MAX_VERSION),
+ SLE_CONDNULL(10, 5, SL_MAX_VERSION),
SLE_END()
};