mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 06:23:04 +01:00
Use consistent left-shift notation for widgets (#14956)
This commit is contained in:
@@ -136,7 +136,7 @@ rct_window* window_save_prompt_open()
|
||||
else
|
||||
{
|
||||
widgets = window_save_prompt_widgets;
|
||||
enabled_widgets = (1 << WIDX_CLOSE) | (1 << WIDX_SAVE) | (1 << WIDX_DONT_SAVE) | (1 << WIDX_CANCEL);
|
||||
enabled_widgets = (1ULL << WIDX_CLOSE) | (1ULL << WIDX_SAVE) | (1ULL << WIDX_DONT_SAVE) | (1ULL << WIDX_CANCEL);
|
||||
width = WW_SAVE;
|
||||
height = WH_SAVE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user