diff options
author | KUDr <kudr@openttd.org> | 2006-11-30 13:52:31 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2006-11-30 13:52:31 +0000 |
commit | 3e6f89ca7e76c078af713b41cfdece5470b9983c (patch) | |
tree | 8335311fe83a979ddf9d9e63b44af12df9bb8942 | |
parent | eb1653836c17f49a235e8519c22fd3fd842096ed (diff) | |
download | openttd-3e6f89ca7e76c078af713b41cfdece5470b9983c.tar.xz |
(svn r7296) -Fix: [YAPF] setting yapf.rail_look_ahead_max_signals to zero causes YAPF to behave incorrectly. Set its min value to 1. (Danny)
-rw-r--r-- | settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c index 3bd825e68..4752e5256 100644 --- a/settings.c +++ b/settings.c @@ -1445,7 +1445,7 @@ const SettingDesc _patch_settings[] = { // This is the penalty for level crossings (for trains only) SDT_CONDVAR (Patches, yapf.rail_crossing_penalty , SLE_UINT, 28, SL_MAX_VERSION, 0, 0, 3 * YAPF_TILE_LENGTH, 0, 1000000, 0, STR_NULL, NULL), // look-ahead how many signals are checked - SDT_CONDVAR (Patches, yapf.rail_look_ahead_max_signals, SLE_UINT, 28, SL_MAX_VERSION, 0, 0, 10 , 0, 100, 0, STR_NULL, NULL), + SDT_CONDVAR (Patches, yapf.rail_look_ahead_max_signals, SLE_UINT, 28, SL_MAX_VERSION, 0, 0, 10 , 1, 100, 0, STR_NULL, NULL), // look-ahead n-th red signal penalty polynomial: penalty = p2 * n^2 + p1 * n + p0 SDT_CONDVAR (Patches, yapf.rail_look_ahead_signal_p0 , SLE_INT , 28, SL_MAX_VERSION, 0, 0, 500 , -1000000, 1000000, 0, STR_NULL, NULL), SDT_CONDVAR (Patches, yapf.rail_look_ahead_signal_p1 , SLE_INT , 28, SL_MAX_VERSION, 0, 0, -100 , -1000000, 1000000, 0, STR_NULL, NULL), |