diff options
author | Patric Stout <truebrain@openttd.org> | 2021-02-28 21:53:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 21:53:14 +0100 |
commit | 8bc0089fc498d603ceef228c5488037721eb548d (patch) | |
tree | 78594a3f38948e30197800d821e52c14a1bf5553 /src | |
parent | 2545b24118daa67c2af49626b3453890de50c1e1 (diff) | |
download | openttd-8bc0089fc498d603ceef228c5488037721eb548d.tar.xz |
Fix c3dc27e3: put the max-value of fast-forward-speed-limit to within the storage size (#8769)
Diffstat (limited to 'src')
-rw-r--r-- | src/table/settings.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/settings.ini b/src/table/settings.ini index 52602a3df..6dfb148b9 100644 --- a/src/table/settings.ini +++ b/src/table/settings.ini @@ -3371,7 +3371,7 @@ flags = SLF_NOT_IN_SAVE | SLF_NO_NETWORK_SYNC guiflags = SGF_0ISDISABLED | SGF_NO_NETWORK def = 2500 min = 0 -max = 100000 +max = 50000 interval = 10 str = STR_CONFIG_SETTING_FAST_FORWARD_SPEED_LIMIT strhelp = STR_CONFIG_SETTING_FAST_FORWARD_SPEED_LIMIT_HELPTEXT |