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:
@@ -66,7 +66,7 @@ rct_window* window_network_status_open(const char* text, close_callback onClose)
|
||||
window = WindowCreateCentred(420, 90, &window_network_status_events, WC_NETWORK_STATUS, WF_10 | WF_TRANSPARENT);
|
||||
|
||||
window->widgets = window_network_status_widgets;
|
||||
window->enabled_widgets = 1 << WIDX_CLOSE;
|
||||
window->enabled_widgets = 1ULL << WIDX_CLOSE;
|
||||
WindowInitScrollWidgets(window);
|
||||
window->no_list_items = 0;
|
||||
window->selected_list_item = -1;
|
||||
|
||||
Reference in New Issue
Block a user