1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Disable tutorial button

This commit is contained in:
Gymnasiast
2015-07-26 15:14:38 +02:00
parent 568915d7fb
commit 19d2bbf919

View File

@@ -99,7 +99,8 @@ void window_title_menu_open()
WF_STICK_TO_BACK | WF_TRANSPARENT
);
window->widgets = window_title_menu_widgets;
window->enabled_widgets |= (8 | 4 | 2 | 1);
window->enabled_widgets |= (8 | 2 | 1);
window->disabled_widgets |= (4); // Disable tutorial button
window_init_scroll_widgets(window);
}