From 573a28f835c0b71ce489d07170e3d55584e4eed0 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 23 Jan 2022 14:50:16 +0100 Subject: [PATCH] Rename sub_68B3FB to PaintTileElementBase --- src/openrct2/paint/tile_element/Paint.TileElement.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openrct2/paint/tile_element/Paint.TileElement.cpp b/src/openrct2/paint/tile_element/Paint.TileElement.cpp index c56e5f0d7a..cd5402a340 100644 --- a/src/openrct2/paint/tile_element/Paint.TileElement.cpp +++ b/src/openrct2/paint/tile_element/Paint.TileElement.cpp @@ -38,7 +38,7 @@ uint16_t testPaintVerticalTunnelHeight; #endif static void blank_tiles_paint(paint_session& session, int32_t x, int32_t y); -static void sub_68B3FB(paint_session& session, int32_t x, int32_t y); +static void PaintTileElementBase(paint_session& session, int32_t x, int32_t y); const int32_t SEGMENTS_ALL = SEGMENT_B4 | SEGMENT_B8 | SEGMENT_BC | SEGMENT_C0 | SEGMENT_C4 | SEGMENT_C8 | SEGMENT_CC | SEGMENT_D0 | SEGMENT_D4; @@ -56,7 +56,7 @@ void tile_element_paint_setup(paint_session& session, const CoordsXY& mapCoords, session.Unk141E9DB = isTrackPiecePreview ? PaintSessionFlags::IsTrackPiecePreview : 0; session.WaterHeight = 0xFFFF; - sub_68B3FB(session, mapCoords.x, mapCoords.y); + PaintTileElementBase(session, mapCoords.x, mapCoords.y); } else if (!(session.ViewFlags & VIEWPORT_FLAG_TRANSPARENT_BACKGROUND)) { @@ -114,7 +114,7 @@ bool gShowSupportSegmentHeights = false; * * rct2: 0x0068B3FB */ -static void sub_68B3FB(paint_session& session, int32_t x, int32_t y) +static void PaintTileElementBase(paint_session& session, int32_t x, int32_t y) { rct_drawpixelinfo* dpi = &session.DPI;