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

Remove snake_case from first chunk of Drawing (#19164)

* Remove snake_case from first chunk of Drawing

* Address formatting
This commit is contained in:
Duncan
2023-01-16 13:50:43 +00:00
committed by GitHub
parent 0d8924c6b0
commit 8a8d3105f3
102 changed files with 514 additions and 520 deletions

View File

@@ -547,8 +547,8 @@ void widget_invalidate(rct_window& w, WidgetIndex widgetIndex)
if (widget.left == -2)
return;
gfx_set_dirty_blocks({ { w.windowPos + ScreenCoordsXY{ widget.left, widget.top } },
{ w.windowPos + ScreenCoordsXY{ widget.right + 1, widget.bottom + 1 } } });
GfxSetDirtyBlocks({ { w.windowPos + ScreenCoordsXY{ widget.left, widget.top } },
{ w.windowPos + ScreenCoordsXY{ widget.right + 1, widget.bottom + 1 } } });
}
template<typename TPred> static void widget_invalidate_by_condition(TPred pred)
@@ -1732,7 +1732,7 @@ void window_resize_gui(int32_t width, int32_t height)
optionsWind->windowPos.x = width - 80;
}
gfx_invalidate_screen();
GfxInvalidateScreen();
}
/**