summaryrefslogtreecommitdiff
path: root/src/settings_internal.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2020-05-17 23:32:06 +0200
committerMichael Lutz <michi@icosahedron.de>2020-05-21 20:02:34 +0200
commita49fdb7ebbb8d8ce96bcd7bd779b18bcd86d0643 (patch)
treefc6776836040a068e6c1710288cee853ba28b565 /src/settings_internal.h
parent715aa67a9c13444ee76e717bfa656472f5fb2ac3 (diff)
downloadopenttd-a49fdb7ebbb8d8ce96bcd7bd779b18bcd86d0643.tar.xz
Codechange: Store base set related texts in std::strings.
Diffstat (limited to 'src/settings_internal.h')
-rw-r--r--src/settings_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings_internal.h b/src/settings_internal.h
index 3d9764dc6..fcad02c3c 100644
--- a/src/settings_internal.h
+++ b/src/settings_internal.h
@@ -27,8 +27,9 @@ enum SettingDescType : byte {
SDT_MANYOFMANY = 3, ///< bitmasked number where MULTIPLE bits may be set
SDT_INTLIST = 4, ///< list of integers separated by a comma ','
SDT_STRING = 5, ///< string with a pre-allocated buffer
+ SDT_STDSTRING = 6, ///< \c std::string
SDT_END,
- /* 10 more possible primitives */
+ /* 9 more possible primitives */
};