From 34e1e773a7acc7f5ce0e1c2d5fada83489d62bb5 Mon Sep 17 00:00:00 2001 From: Sam Horn Date: Sun, 18 Oct 2015 22:40:07 +1000 Subject: [PATCH] Fixes #2080 --- src/windows/ride_list.c | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/src/windows/ride_list.c b/src/windows/ride_list.c index ae3cf98b2d..1070bd585b 100644 --- a/src/windows/ride_list.c +++ b/src/windows/ride_list.c @@ -235,7 +235,7 @@ static void window_ride_list_resize(rct_window *w) */ static void window_ride_list_mousedown(int widgetIndex, rct_window*w, rct_widget* widget) { - int numItems, i; + int currentItem, lastItem, count; if (widgetIndex == WIDX_OPEN_CLOSE_ALL) { gDropdownItemsFormat[0] = STR_CLOSE_ALL; @@ -244,23 +244,26 @@ static void window_ride_list_mousedown(int widgetIndex, rct_window*w, rct_widget } else if (widgetIndex == WIDX_INFORMATION_TYPE_DROPDOWN) { widget--; - numItems = 9; - if (w->page != PAGE_RIDES) - numItems -= 5; - if (RCT2_GLOBAL(RCT2_ADDRESS_PARK_FLAGS, uint32) & PARK_FLAGS_NO_MONEY) - numItems--; + if (w->page == PAGE_RIDES) + lastItem = STR_GUESTS_FAVOURITE; + else + lastItem = STR_PROFIT; + + for (count = 0, currentItem = STR_STATUS; currentItem <= lastItem; currentItem++) { + if ((RCT2_GLOBAL(RCT2_ADDRESS_PARK_FLAGS, uint32) & PARK_FLAGS_NO_MONEY) && (currentItem == STR_PROFIT)) + continue; + gDropdownItemsFormat[count] = 1142; + gDropdownItemsArgs[count] = currentItem; + count++; + } - for (i = 0; i < numItems; i++) { - gDropdownItemsFormat[i] = 1142; - gDropdownItemsArgs[i] = STR_STATUS + i; - } window_dropdown_show_text_custom_width( w->x + widget->left, w->y + widget->top, widget->bottom - widget->top, w->colours[1], DROPDOWN_FLAG_STAY_OPEN, - numItems, + count, widget->right - widget->left - 3 ); dropdown_set_checked(_window_ride_list_information_type, true);