diff options
author | rubidium42 <rubidium@openttd.org> | 2021-04-27 18:14:44 +0200 |
---|---|---|
committer | rubidium42 <rubidium42@users.noreply.github.com> | 2021-04-27 19:41:51 +0200 |
commit | b54d8a49fb8d635545b2251bfdf41ebee60edc0c (patch) | |
tree | fee346a620a7b5f3c590459eac8cf806c090b0d3 /src/table/settings.h.preamble | |
parent | 4880ec29e4649655e775c36cd6bd8c0927d13ee1 (diff) | |
download | openttd-b54d8a49fb8d635545b2251bfdf41ebee60edc0c.tar.xz |
Feature: allow non-ASCII currency separators
Diffstat (limited to 'src/table/settings.h.preamble')
-rw-r--r-- | src/table/settings.h.preamble | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/table/settings.h.preamble b/src/table/settings.h.preamble index d7084d724..c3e0678b7 100644 --- a/src/table/settings.h.preamble +++ b/src/table/settings.h.preamble @@ -107,9 +107,6 @@ static size_t ConvertLandscape(const char *value); #define SDT_STR(base, var, type, flags, guiflags, def, str, strhelp, strval, proc, from, to, cat, extra, startup)\ SDT_GENERAL(#var, SDT_STRING, SL_STR, type, flags, guiflags, base, var, sizeof(((base*)8)->var), def, 0, 0, 0, nullptr, str, strhelp, strval, proc, nullptr, from, to, cat, extra, startup) -#define SDT_CHR(base, var, flags, guiflags, def, str, strhelp, strval, proc, from, to, cat, extra, startup)\ - SDT_GENERAL(#var, SDT_STRING, SL_VAR, SLE_CHAR, flags, guiflags, base, var, 1, def, 0, 0, 0, nullptr, str, strhelp, strval, proc, nullptr, from, to, cat, extra, startup) - #define SDT_OMANY(base, var, type, flags, guiflags, def, max, full, str, strhelp, strval, proc, from, to, load, cat, extra, startup)\ SDT_GENERAL(#var, SDT_ONEOFMANY, SL_VAR, type, flags, guiflags, base, var, 1, def, 0, max, 0, full, str, strhelp, strval, proc, load, from, to, cat, extra, startup) |