1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2025-12-22 12:42:43 +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

@@ -950,7 +950,7 @@ public:
static WindowDesc _load_dialog_desc(
WDP_CENTER, "load_game", 500, 294,
WC_SAVELOAD, WC_NONE,
0,
{},
_nested_load_dialog_widgets
);
@@ -958,7 +958,7 @@ static WindowDesc _load_dialog_desc(
static WindowDesc _load_heightmap_dialog_desc(
WDP_CENTER, "load_heightmap", 257, 320,
WC_SAVELOAD, WC_NONE,
0,
{},
_nested_load_heightmap_dialog_widgets
);
@@ -966,7 +966,7 @@ static WindowDesc _load_heightmap_dialog_desc(
static WindowDesc _load_town_data_dialog_desc(
WDP_CENTER, "load_town_data", 257, 320,
WC_SAVELOAD, WC_NONE,
0,
{},
_nested_load_town_data_dialog_widgets
);
@@ -974,7 +974,7 @@ static WindowDesc _load_town_data_dialog_desc(
static WindowDesc _save_dialog_desc(
WDP_CENTER, "save_game", 500, 294,
WC_SAVELOAD, WC_NONE,
0,
{},
_nested_save_dialog_widgets
);