From aa2887f5dda51a35523dfe401f4d90ed7eb4a987 Mon Sep 17 00:00:00 2001 From: Harry-Hopkinson Date: Wed, 5 Jun 2024 20:14:45 +0000 Subject: [PATCH] Rename CORKSCREW_RC_BLOCK_BRAKE_SW_NE_OPEN --- 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 23d6eb546e..efc5e878a7 100644 --- a/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp +++ b/src/openrct2/ride/coaster/CorkscrewRollerCoaster.hpp @@ -23,15 +23,15 @@ #include "../TrackData.h" #include "../TrackPaint.h" -static constexpr uint32_t CORKSCREW_RC_BLOCK_BRAKE_SW_NE_OPEN = 16232; +static constexpr uint32_t kCorkscrewRcBlockBrakeSwNeOpen = 16232; static constexpr uint32_t CORKSCREW_RC_BLOCK_BRAKE_NW_SE_OPEN = 16233; static constexpr uint32_t CORKSCREW_RC_BLOCK_BRAKE_SW_NE_CLOSED = 16234; static constexpr uint32_t CORKSCREW_RC_BLOCK_BRAKE_NW_SE_CLOSED = 16235; static constexpr uint32_t _CorkscrewRCBlockBrakeImages[NumOrthogonalDirections][2] = { - { CORKSCREW_RC_BLOCK_BRAKE_SW_NE_OPEN, CORKSCREW_RC_BLOCK_BRAKE_SW_NE_CLOSED }, + { kCorkscrewRcBlockBrakeSwNeOpen, CORKSCREW_RC_BLOCK_BRAKE_SW_NE_CLOSED }, { CORKSCREW_RC_BLOCK_BRAKE_NW_SE_OPEN, CORKSCREW_RC_BLOCK_BRAKE_NW_SE_CLOSED }, - { CORKSCREW_RC_BLOCK_BRAKE_SW_NE_OPEN, CORKSCREW_RC_BLOCK_BRAKE_SW_NE_CLOSED }, + { kCorkscrewRcBlockBrakeSwNeOpen, CORKSCREW_RC_BLOCK_BRAKE_SW_NE_CLOSED }, { CORKSCREW_RC_BLOCK_BRAKE_NW_SE_OPEN, CORKSCREW_RC_BLOCK_BRAKE_NW_SE_CLOSED }, };