mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 05:53:02 +01:00
Use consistent left-shift notation for widgets (#14956)
This commit is contained in:
@@ -129,8 +129,8 @@ rct_window* window_server_list_open()
|
||||
window_server_list_widgets[WIDX_PLAYER_NAME_INPUT].string = _playerName;
|
||||
window->widgets = window_server_list_widgets;
|
||||
window->enabled_widgets
|
||||
= ((1 << WIDX_CLOSE) | (1 << WIDX_PLAYER_NAME_INPUT) | (1 << WIDX_FETCH_SERVERS) | (1 << WIDX_ADD_SERVER)
|
||||
| (1 << WIDX_START_SERVER));
|
||||
= ((1ULL << WIDX_CLOSE) | (1ULL << WIDX_PLAYER_NAME_INPUT) | (1ULL << WIDX_FETCH_SERVERS) | (1ULL << WIDX_ADD_SERVER)
|
||||
| (1ULL << WIDX_START_SERVER));
|
||||
WindowInitScrollWidgets(window);
|
||||
window->no_list_items = 0;
|
||||
window->selected_list_item = -1;
|
||||
|
||||
Reference in New Issue
Block a user