summaryrefslogtreecommitdiff
path: root/settings.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-28 09:13:33 +0000
committerrubidium <rubidium@openttd.org>2006-08-28 09:13:33 +0000
commit6bf2aba6978d66143cc3ebeebc788612fec18bed (patch)
treea726d354eef64f96f4c243b63da5755e2437d959 /settings.h
parent7d885db0af99da3cec7ee7a9fa0630448e054b7d (diff)
downloadopenttd-6bf2aba6978d66143cc3ebeebc788612fec18bed.tar.xz
(svn r6186) -Fix [FS#309]: add an override system to the dynamically determined size of steps for numeric patch settings in the 'Configure patches' GUI.
The size of these steps normally about (max - min) / 50, which results in steps of 100 000 years for the start year, end year, network restart year and the year of introduction of coloured newspapers.
Diffstat (limited to 'settings.h')
-rw-r--r--settings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/settings.h b/settings.h
index 5e57f1774..d1f9f7198 100644
--- a/settings.h
+++ b/settings.h
@@ -41,6 +41,7 @@ typedef struct SettingDescBase {
SettingDescType cmd; ///< various flags for the variable
SettingGuiFlag flags; ///< handles how a setting would show up in the GUI (text/currency, etc.)
int32 min, max; ///< minimum and maximum values
+ int32 interval; ///< the interval to use between settings in the 'patches' window. If interval is '0' the interval is dynamically determined
const char *many; ///< ONE/MANY_OF_MANY: string of possible values for this type
StringID str; ///< (translated) string with descriptive text; gui and console
OnChange *proc; ///< callback procedure for when the value is changed