Move title_options button after resizing screen

This commit is contained in:
Timmy Weerwag 2015-02-20 02:31:17 +01:00
parent d38852f926
commit 454e7dbd23
1 changed files with 5 additions and 0 deletions

View File

@ -1787,6 +1787,11 @@ void window_resize_gui(int width, int height)
exitWind->x = width - 40;
exitWind->y = height - 64;
}
rct_window *optionsWind = window_find_by_class(WC_TITLE_OPTIONS);
if (optionsWind != NULL) {
optionsWind->x = width - 80;
}
}
/**