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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user