1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Make more window variables and functions static

This commit is contained in:
Marijn van der Werf
2017-08-06 14:41:13 +02:00
committed by Michał Janiszewski
parent 4d90940d21
commit 28c78faa57
18 changed files with 139 additions and 140 deletions

View File

@@ -46,11 +46,11 @@ static rct_widget window_dropdown_widgets[] = {
{ WIDGETS_END },
};
sint32 _dropdown_num_columns;
sint32 _dropdown_num_rows;
sint32 _dropdown_item_width;
sint32 _dropdown_item_height;
bool _dropdown_list_vertically;
static sint32 _dropdown_num_columns;
static sint32 _dropdown_num_rows;
static sint32 _dropdown_item_width;
static sint32 _dropdown_item_height;
static bool _dropdown_list_vertically;
sint32 gDropdownNumItems;
rct_string_id gDropdownItemsFormat[DROPDOWN_ITEMS_MAX_SIZE];