1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 23:33:04 +01:00

Refactor Widget to TitleCase (#13355)

This commit is contained in:
pizza2004
2020-11-03 14:29:22 -07:00
committed by GitHub
parent 1b55914c96
commit a5607da09d
36 changed files with 464 additions and 475 deletions

View File

@@ -610,7 +610,7 @@ void window_update_scroll_widgets(rct_window* w)
if (scrollPositionChanged)
{
widget_scroll_update_thumbs(w, widgetIndex);
WidgetScrollUpdateThumbs(w, widgetIndex);
w->Invalidate();
}
scrollIndex++;
@@ -2119,7 +2119,7 @@ rct_windowclass window_get_classification(rct_window* window)
*
* rct2: 0x006EAF26
*/
void widget_scroll_update_thumbs(rct_window* w, rct_widgetindex widget_index)
void WidgetScrollUpdateThumbs(rct_window* w, rct_widgetindex widget_index)
{
rct_widget* widget = &w->widgets[widget_index];
rct_scroll* scroll = &w->scrolls[window_get_scroll_data_index(w, widget_index)];