diff options
author | rubidium <rubidium@openttd.org> | 2011-02-04 16:40:38 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-02-04 16:40:38 +0000 |
commit | 0fe0225751c801015e8153ef8457c984312f3c72 (patch) | |
tree | c3deaa8e684b529a67bc161fb6a7105c59c0cc7d /src/table | |
parent | 773c6765e60e56db4c24c3150de52b18f084637d (diff) | |
download | openttd-0fe0225751c801015e8153ef8457c984312f3c72.tar.xz |
(svn r21962) -Feature-ish: GUI setting to disable reversing at signals
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/table/settings.h b/src/table/settings.h index 5f87f74ae..92129a832 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -473,6 +473,7 @@ const SettingDesc _settings[] = { SDT_VAR(GameSettings, vehicle.extend_vehicle_life, SLE_UINT8, 0, 0, 0, 0, 100, 0, STR_NULL, NULL), SDT_VAR(GameSettings, economy.dist_local_authority, SLE_UINT8, 0, 0, 20, 5, 60, 0, STR_NULL, NULL), + SDT_CONDBOOL(GameSettings, pf.reverse_at_signals, 159, SL_MAX_VERSION, 0, 0, false, STR_CONFIG_SETTING_REVERSE_AT_SIGNALS, NULL), SDT_VAR(GameSettings, pf.wait_oneway_signal, SLE_UINT8, 0, 0, 15, 2, 255, 0, STR_NULL, NULL), SDT_VAR(GameSettings, pf.wait_twoway_signal, SLE_UINT8, 0, 0, 41, 2, 255, 0, STR_NULL, NULL), SDT_CONDVAR(GameSettings, economy.town_noise_population[0], SLE_UINT16, 96, SL_MAX_VERSION, 0, 0, 800, 200, 65535, 0, STR_NULL, NULL), |