1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 20:43:04 +01:00

Rename images to KImages

This commit is contained in:
Harry-Hopkinson
2024-06-05 20:22:37 +00:00
committed by Harry Hopkinson
parent 68f4bd2fe9
commit 76ca291a65

View File

@@ -6398,13 +6398,13 @@ static void CorkscrewRCTrackDiagFlat(
PaintSession& session, const Ride& ride, uint8_t trackSequence, uint8_t direction, int32_t height,
const TrackElement& trackElement)
{
constexpr ImageIndex images[2][NumOrthogonalDirections] = {
constexpr ImageIndex kImages[2][NumOrthogonalDirections] = {
{ 16634, 16635, 16636, 16637 },
{ 16696, 16697, 16698, 16699 },
};
TrackPaintUtilDiagTilesPaintExtra(
session, 3, height, direction, trackSequence, images[trackElement.HasChain()], supportType);
session, 3, height, direction, trackSequence, kImages[trackElement.HasChain()], supportType);
}
template<MetalSupportType supportType>