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:
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user