1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Fix another missing instance of size_t

This commit is contained in:
Robert Jordan
2017-10-30 22:22:02 -04:00
committed by Richard Jenkins
parent 0698154ba1
commit 61accf6e02

View File

@@ -1475,7 +1475,7 @@ static void window_options_dropdown(rct_window *w, rct_widgetindex widgetIndex,
break;
case WIDX_TITLE_SEQUENCE_DROPDOWN:
if (dropdownIndex != title_get_current_sequence()) {
title_sequence_change_preset(dropdownIndex);
title_sequence_change_preset((size_t)dropdownIndex);
config_save_default();
window_invalidate(w);
}