1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Refactor Colour.h constants to kCamelCase

This commit is contained in:
Harry Hopkinson
2024-09-24 20:53:11 +01:00
committed by Harry-Hopkinson
parent 0b77287370
commit d34f17c945
8 changed files with 40 additions and 41 deletions

View File

@@ -499,7 +499,7 @@ static constexpr colour_t kColoursDropdownOrder[] = {
int32_t defaultIndex = -1;
const bool specialColoursEnabled = !alwaysHideSpecialColours && GetGameState().Cheats.AllowSpecialColourSchemes;
auto numColours = specialColoursEnabled ? static_cast<uint8_t>(COLOUR_COUNT) : COLOUR_NUM_NORMAL;
auto numColours = specialColoursEnabled ? static_cast<uint8_t>(COLOUR_COUNT) : kColourNumNormal;
// Set items
for (uint64_t i = 0; i < numColours; i++)
{