diff options
Diffstat (limited to 'settings.h')
-rw-r--r-- | settings.h | 1 |
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 |