1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 01:04:50 +01:00

Move title menu buttons up to compensate for new item.

This commit is contained in:
Aaron van Geffen
2018-09-13 22:43:12 +02:00
parent e1d6585423
commit d6769fafe2
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ rct_window* window_title_menu_open()
rct_window* window;
window = window_create(
0, context_get_height() - 142, 0, 100, &window_title_menu_events, WC_TITLE_MENU,
0, context_get_height() - 154, 0, 100, &window_title_menu_events, WC_TITLE_MENU,
WF_STICK_TO_BACK | WF_TRANSPARENT | WF_NO_BACKGROUND);
window->widgets = window_title_menu_widgets;
window->enabled_widgets

View File

@@ -1701,7 +1701,7 @@ void window_resize_gui(int32_t width, int32_t height)
if (titleWind != nullptr)
{
titleWind->x = (width - titleWind->width) / 2;
titleWind->y = height - 142;
titleWind->y = height - 154;
}
rct_window* exitWind = window_find_by_class(WC_TITLE_EXIT);