From 68f4bd2fe945c8446c81285fd6af246b3b806c48 Mon Sep 17 00:00:00 2001 From: Harry-Hopkinson Date: Wed, 5 Jun 2024 20:21:45 +0000 Subject: [PATCH] Rename imageIds to kImageIds --- src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp b/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp index 2d96e23573..f94c253efb 100644 --- a/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp +++ b/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp @@ -126,7 +126,7 @@ static void CorkscrewRCTrackStation( PaintSession& session, const Ride& ride, [[maybe_unused]] uint8_t trackSequence, uint8_t direction, int32_t height, const TrackElement& trackElement) { - static constexpr uint32_t imageIds[4][2] = { + static constexpr uint32_t kImageIds[4][2] = { { 16236, SPR_STATION_BASE_A_SW_NE }, { 16237, SPR_STATION_BASE_A_NW_SE }, { 16236, SPR_STATION_BASE_A_SW_NE }, @@ -143,11 +143,11 @@ static void CorkscrewRCTrackStation( else { PaintAddImageAsParentRotated( - session, direction, session.TrackColours.WithIndex(imageIds[direction][0]), { 0, 0, height }, + session, direction, session.TrackColours.WithIndex(kImageIds[direction][0]), { 0, 0, height }, { { 0, 6, height + 3 }, { 32, 20, 1 } }); } PaintAddImageAsParentRotated( - session, direction, GetStationColourScheme(session, trackElement).WithIndex(imageIds[direction][1]), { 0, 0, height }, + session, direction, GetStationColourScheme(session, trackElement).WithIndex(kImageIds[direction][1]), { 0, 0, height }, { 32, 32, 1 }); DrawSupportsSideBySide(session, direction, height, session.SupportColours, supportType); TrackPaintUtilDrawStation2(session, ride, direction, height, trackElement, 9, 11);