diff options
author | rubidium <rubidium@openttd.org> | 2009-10-27 20:28:10 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-10-27 20:28:10 +0000 |
commit | 778f6533ea9932ab79d495b08e625f1ffb6fc23e (patch) | |
tree | a8ea5a136a10e439720a277be044d7c5ffa96187 /src/table | |
parent | 0b5698a5b0ae79bf24ef0bcc220460cbc83e16c0 (diff) | |
download | openttd-778f6533ea9932ab79d495b08e625f1ffb6fc23e.tar.xz |
(svn r17893) -Feature [FS#2633]: make it possible to disable background saving, only via the config file/in game console though
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 0fee7ef20..38333ede3 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -525,6 +525,7 @@ const SettingDesc _settings[] = { /***************************************************************************/ /* Unsaved setting variables. */ SDTC_OMANY(gui.autosave, SLE_UINT8, S, 0, 1, 4, _autosave_interval, STR_NULL, NULL), + SDTC_BOOL(gui.threaded_saves, S, 0, true, STR_NULL, NULL), SDTC_OMANY(gui.date_format_in_default_names,SLE_UINT8,S,MS, 0, 2, _savegame_date, STR_CONFIG_SETTING_DATE_FORMAT_IN_SAVE_NAMES, NULL), SDTC_BOOL(gui.vehicle_speed, S, 0, true, STR_CONFIG_SETTING_VEHICLESPEED, NULL), SDTC_BOOL(gui.status_long_date, S, 0, true, STR_CONFIG_SETTING_LONGDATE, NULL), |