1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Update PitchAndRoll field names

This commit is contained in:
Gymnasiast
2024-08-11 15:02:33 +02:00
parent 0ea9c5a2c2
commit 00c42431da

View File

@@ -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)
{