diff options
author | rubidium42 <rubidium@openttd.org> | 2021-06-21 18:41:30 +0200 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-06-26 20:28:34 +0200 |
commit | f35e6c1c7fdaefc9153a54c089dbaa6e2549e6b1 (patch) | |
tree | 739a08e82139c07d785fd2cdc4a339ae50ce7859 /src/table | |
parent | c93fcbcb286222f366c2e182a337c52c50fe36d5 (diff) | |
download | openttd-f35e6c1c7fdaefc9153a54c089dbaa6e2549e6b1.tar.xz |
Codechange: use C-style strings instread of std::string in the SettingDesc constructor
This as using std::string causes much more variables to be tracked, potentially causing problemes for certain compilers in certain situations
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/settings/settings.ini | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/table/settings/settings.ini b/src/table/settings/settings.ini index 7c5cac886..6fe4d9d51 100644 --- a/src/table/settings/settings.ini +++ b/src/table/settings/settings.ini @@ -1002,14 +1002,14 @@ post_cb = MaxVehiclesChanged cat = SC_BASIC [SDTG_BOOL] -name = {} +name = """" flags = SF_NO_NETWORK var = _old_vds.servint_ispercent def = false to = SLV_120 [SDTG_VAR] -name = {} +name = """" type = SLE_UINT16 flags = SF_GUI_0_IS_SPECIAL var = _old_vds.servint_trains @@ -1019,7 +1019,7 @@ max = 800 to = SLV_120 [SDTG_VAR] -name = {} +name = """" type = SLE_UINT16 flags = SF_GUI_0_IS_SPECIAL var = _old_vds.servint_roadveh @@ -1029,7 +1029,7 @@ max = 800 to = SLV_120 [SDTG_VAR] -name = {} +name = """" type = SLE_UINT16 flags = SF_GUI_0_IS_SPECIAL var = _old_vds.servint_ships @@ -1039,7 +1039,7 @@ max = 800 to = SLV_120 [SDTG_VAR] -name = {} +name = """" type = SLE_UINT16 flags = SF_GUI_0_IS_SPECIAL var = _old_vds.servint_aircraft |