diff --git a/include/Nazara/Math/EulerAngles.inl b/include/Nazara/Math/EulerAngles.inl index 157e51dae..c340980c6 100644 --- a/include/Nazara/Math/EulerAngles.inl +++ b/include/Nazara/Math/EulerAngles.inl @@ -110,16 +110,16 @@ template NzEulerAngles NzEulerAngles::operator+(const NzEulerAngles& angles) const { return NzEulerAngles(pitch + angles.pitch, - yaw + angles.yaw, - roll + angles.roll); + yaw + angles.yaw, + roll + angles.roll); } template NzEulerAngles NzEulerAngles::operator-(const NzEulerAngles& angles) const { return NzEulerAngles(pitch - angles.pitch, - yaw - angles.yaw, - roll - angles.roll); + yaw - angles.yaw, + roll - angles.roll); } template