Add: INR currency (#8136)
[openttd-github.git] / src / table / win32_settings.ini
blobc7915e32bd483bc74ed9af6155f7cd8a2a72ff02
1 ; This file is part of OpenTTD.
2 ; OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
3 ; OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
4 ; See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
7 [pre-amble]
8 /* win32_v.cpp only settings */
9 #if defined(_WIN32) && !defined(DEDICATED)
10 extern bool _force_full_redraw, _window_maximize;
11 extern uint _display_hz;
13 static const SettingDescGlobVarList _win32_settings[] = {
14 [post-amble]
16 #endif /* _WIN32 */
17 [templates]
18 SDTG_BOOL = SDTG_BOOL($name, $flags, $guiflags, $var, $def, $str, $strhelp, $strval, $proc, $from, $to, $cat),
19 SDTG_VAR = SDTG_VAR($name, $type, $flags, $guiflags, $var, $def, $min, $max, $interval, $str, $strhelp, $strval, $proc, $from, $to, $cat),
20 SDTG_END = SDTG_END()
22 [defaults]
23 flags = SLF_NOT_IN_SAVE | SLF_NO_NETWORK_SYNC
24 guiflags = SGF_NONE
25 interval = 0
26 str = STR_NULL
27 strhelp = STR_CONFIG_SETTING_NO_EXPLANATION_AVAILABLE_HELPTEXT
28 strval = STR_NULL
29 proc = nullptr
30 load = nullptr
31 from = SL_MIN_VERSION
32 to = SL_MAX_VERSION
33 cat = SC_ADVANCED
37 [SDTG_VAR]
38 name = ""display_hz""
39 type = SLE_UINT
40 var = _display_hz
41 def = 0
42 min = 0
43 max = 120
44 cat = SC_EXPERT
46 [SDTG_BOOL]
47 name = ""force_full_redraw""
48 var = _force_full_redraw
49 def = false
50 cat = SC_EXPERT
52 [SDTG_BOOL]
53 name = ""window_maximize""
54 var = _window_maximize
55 def = false
56 cat = SC_BASIC
58 [SDTG_END]