summaryrefslogtreecommitdiff
path: root/src/common/vector_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/vector_math.h')
-rw-r--r--src/common/vector_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/vector_math.h b/src/common/vector_math.h
index 9a7d50abd..b4885835d 100644
--- a/src/common/vector_math.h
+++ b/src/common/vector_math.h
@@ -265,7 +265,7 @@ public:
265 z = std::sin(roll) * temp + std::cos(roll) * z; 265 z = std::sin(roll) * temp + std::cos(roll) * z;
266 266
267 temp = x; 267 temp = x;
268 x = std::cosf(pitch) * x + std::sin(pitch) * z; 268 x = std::cos(pitch) * x + std::sin(pitch) * z;
269 z = -std::sin(pitch) * temp + std::cos(pitch) * z; 269 z = -std::sin(pitch) * temp + std::cos(pitch) * z;
270 270
271 temp = x; 271 temp = x;