diff options
author | dP <dp@dpointer.org> | 2021-01-15 17:38:14 +0300 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2021-01-22 09:50:53 +0000 |
commit | bab7de6cf23dce124ef8b1e284d0d1f3996dc8b8 (patch) | |
tree | 3686edd1b3ebb285e802a8a16b79552972c0b1b4 /src/saveload | |
parent | 4b42ecb0f64c0044786412c15fb31b3705016375 (diff) | |
download | openttd-bab7de6cf23dce124ef8b1e284d0d1f3996dc8b8.tar.xz |
Feature: Allow GameScripts to add additional text to Industry view window
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/industry_sl.cpp | 1 | ||||
-rw-r--r-- | src/saveload/saveload.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp index 99e25856c..6f41e3455 100644 --- a/src/saveload/industry_sl.cpp +++ b/src/saveload/industry_sl.cpp @@ -72,6 +72,7 @@ static const SaveLoad _industry_desc[] = { SLE_CONDNULL(1, SLV_82, SLV_197), // random_triggers SLE_CONDVAR(Industry, random, SLE_UINT16, SLV_82, SL_MAX_VERSION), + SLE_CONDSSTR(Industry, text, SLE_STR | SLF_ALLOW_CONTROL, SLV_INDUSTRY_TEXT, SL_MAX_VERSION), SLE_CONDNULL(32, SLV_2, SLV_144), // old reserved space diff --git a/src/saveload/saveload.h b/src/saveload/saveload.h index fb7761128..ac4658455 100644 --- a/src/saveload/saveload.h +++ b/src/saveload/saveload.h @@ -323,6 +323,7 @@ enum SaveLoadVersion : uint16 { SLV_GS_INDUSTRY_CONTROL, ///< 287 PR#7912 and PR#8115 GS industry control. SLV_VEH_MOTION_COUNTER, ///< 288 PR#8591 Desync safe motion counter + SLV_INDUSTRY_TEXT, ///< 289 PR#8576 Additional GS text for industries. SL_MAX_VERSION, ///< Highest possible saveload version }; |