From 00c42431dadbf93bd28d7ff21585a4edfc5d7d68 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 11 Aug 2024 15:02:33 +0200 Subject: [PATCH] Update PitchAndRoll field names --- src/openrct2/ride/Track.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openrct2/ride/Track.h b/src/openrct2/ride/Track.h index 6fddc372fb..9e7d1c1431 100644 --- a/src/openrct2/ride/Track.h +++ b/src/openrct2/ride/Track.h @@ -158,12 +158,12 @@ struct TrackDefinition struct PitchAndRoll { - TrackPitch Pitch; - TrackRoll Roll; + TrackPitch pitch; + TrackRoll roll; }; constexpr bool operator==(const PitchAndRoll& vb1, const PitchAndRoll& vb2) { - return vb1.Pitch == vb2.Pitch && vb1.Roll == vb2.Roll; + return vb1.pitch == vb2.pitch && vb1.roll == vb2.roll; } constexpr bool operator!=(const PitchAndRoll& vb1, const PitchAndRoll& vb2) {