diff options
author | rubidium <rubidium@openttd.org> | 2009-04-23 23:30:54 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-04-23 23:30:54 +0000 |
commit | 81dccf32c17dc557e0c021de31dc4a3872da07dc (patch) | |
tree | ab129613db5eefdc19ffe1b09bbe9f629a9241f3 /src/table | |
parent | a1e822df6b36c07236657c17fa29f017e7b2f8ef (diff) | |
download | openttd-81dccf32c17dc557e0c021de31dc4a3872da07dc.tar.xz |
(svn r16131) -Fix (r16129): some compile warnings on some compilers
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/settings.h b/src/table/settings.h index a6a41d409..b5320245e 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -510,8 +510,8 @@ const SettingDesc _settings[] = { SDT_CONDOMANY(GameSettings, locale.currency, SLE_UINT8, 97, SL_MAX_VERSION, N, 0, 0, CUSTOM_CURRENCY_ID, _locale_currencies, STR_NULL, NULL, NULL), SDT_CONDOMANY(GameSettings, locale.units, SLE_UINT8, 97, SL_MAX_VERSION, N, 0, 1, 2, _locale_units, STR_NULL, NULL, NULL), - SDT_CONDSTR(GameSettings, locale.digit_group_separator, SLE_STRQ,118, SL_MAX_VERSION, N, NULL, STR_NULL, NULL, NULL), - SDT_CONDSTR(GameSettings, locale.digit_group_separator_currency, SLE_STRQ,118, SL_MAX_VERSION, N, NULL, STR_NULL, NULL, NULL), + SDT_CONDSTR(GameSettings, locale.digit_group_separator, SLE_STRQ,118, SL_MAX_VERSION, N, 0, NULL, STR_NULL, NULL), + SDT_CONDSTR(GameSettings, locale.digit_group_separator_currency, SLE_STRQ,118, SL_MAX_VERSION, N, 0, NULL, STR_NULL, NULL), /***************************************************************************/ /* Unsaved setting variables. */ |