1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Merge pull request #1686 from Gymnasiast/disable-tutorial-button

Disable tutorial button
This commit is contained in:
Duncan
2015-07-26 17:00:56 +01:00

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);
}