summaryrefslogtreecommitdiff
path: root/src/order_backup.h
diff options
context:
space:
mode:
authorglx22 <glx@openttd.org>2021-06-07 23:24:37 +0200
committerLoïc Guilloux <glx22@users.noreply.github.com>2021-07-06 22:29:08 +0200
commit2c941cd8b3cb1774f4982b86735e276597a91750 (patch)
treeae545cd8e0b66ece181fb5b5bc9ebe8db48c374a /src/order_backup.h
parentc1a9fe6fbd736c9e3a93314b0721d8f2cb8a2052 (diff)
downloadopenttd-2c941cd8b3cb1774f4982b86735e276597a91750.tar.xz
Codechange: Use ChunkHandlers sub-classes
Diffstat (limited to 'src/order_backup.h')
-rw-r--r--src/order_backup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/order_backup.h b/src/order_backup.h
index e1b71a71d..c92adbb41 100644
--- a/src/order_backup.h
+++ b/src/order_backup.h
@@ -36,7 +36,7 @@ static const uint32 MAKE_ORDER_BACKUP_FLAG = 1U << 31;
struct OrderBackup : OrderBackupPool::PoolItem<&_order_backup_pool>, BaseConsist {
private:
friend SaveLoadTable GetOrderBackupDescription(); ///< Saving and loading of order backups.
- friend void Load_BKOR(); ///< Creating empty orders upon savegame loading.
+ friend struct BKORChunkHandler; ///< Creating empty orders upon savegame loading.
uint32 user; ///< The user that requested the backup.
TileIndex tile; ///< Tile of the depot where the order was changed.
GroupID group; ///< The group the vehicle was part of.