mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-29 01:35:06 +01:00
Use consistent left-shift notation for widgets (#14956)
This commit is contained in:
@@ -422,7 +422,7 @@ private:
|
||||
|
||||
void InitialiseWidgets()
|
||||
{
|
||||
enabled_widgets = (1 << WIDX_CLOSE) | (1 << WIDX_RESET);
|
||||
enabled_widgets = (1ULL << WIDX_CLOSE) | (1ULL << WIDX_RESET);
|
||||
|
||||
_widgets.clear();
|
||||
_widgets.insert(_widgets.begin(), std::begin(window_shortcut_widgets), std::end(window_shortcut_widgets) - 1);
|
||||
|
||||
Reference in New Issue
Block a user