1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Implement #11944: Remember rides sort mode (#11945)

This commit is contained in:
Aaron van Geffen
2020-06-13 23:36:43 +02:00
committed by GitHub
parent d695e1d071
commit de045978de
2 changed files with 3 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ static constexpr const rct_string_id page_names[] = {
};
// clang-format on
static int32_t _window_ride_list_information_type;
static int32_t _window_ride_list_information_type = INFORMATION_TYPE_STATUS;
static void window_ride_list_draw_tab_images(rct_drawpixelinfo* dpi, rct_window* w);
static void window_ride_list_close_all(rct_window* w);
@@ -223,7 +223,7 @@ rct_window* window_ride_list_open()
window->max_height = 700;
window_ride_list_refresh_list(window);
}
_window_ride_list_information_type = INFORMATION_TYPE_STATUS;
window->list_information_type = 0;
_quickDemolishMode = false;