mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Use consistent left-shift notation for widgets (#14956)
This commit is contained in:
@@ -392,7 +392,7 @@ namespace OpenRCT2::Ui::Windows
|
||||
{
|
||||
number = GetNewWindowNumber();
|
||||
custom_info = new CustomWindowInfo(owner, desc);
|
||||
enabled_widgets = (1 << WIDX_CLOSE);
|
||||
enabled_widgets = (1ULL << WIDX_CLOSE);
|
||||
|
||||
// Set window tab
|
||||
page = desc.TabIndex.value_or(0);
|
||||
|
||||
Reference in New Issue
Block a user