1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-18 01:42:38 +01:00

Codechange: Use EnumBitSet for WindowDefaultFlags.

This commit is contained in:
Peter Nelson
2025-01-29 23:36:47 +00:00
committed by Peter Nelson
parent efb05396a7
commit d30e8dd1c1
63 changed files with 184 additions and 183 deletions

View File

@@ -1192,7 +1192,7 @@ static constexpr NWidgetPart _nested_game_options_widgets[] = {
static WindowDesc _game_options_desc(
WDP_CENTER, nullptr, 0, 0,
WC_GAME_OPTIONS, WC_NONE,
0,
{},
_nested_game_options_widgets
);
@@ -2902,7 +2902,7 @@ static constexpr NWidgetPart _nested_settings_selection_widgets[] = {
static WindowDesc _settings_selection_desc(
WDP_CENTER, "settings", 510, 450,
WC_GAME_OPTIONS, WC_NONE,
0,
{},
_nested_settings_selection_widgets
);
@@ -3210,7 +3210,7 @@ static constexpr NWidgetPart _nested_cust_currency_widgets[] = {
static WindowDesc _cust_currency_desc(
WDP_CENTER, nullptr, 0, 0,
WC_CUSTOM_CURRENCY, WC_NONE,
0,
{},
_nested_cust_currency_widgets
);