summaryrefslogtreecommitdiffstats
path: root/src/common/vector_math.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-05-06 01:11:53 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-05-06 01:18:35 +0200
commitf017335fef95d2cecc0fcda185f0e59cc1945101 (patch)
tree3c119e1e6f51506e039a519b0baf245ae9b41747 /src/common/vector_math.h
parentyuzu: Add motion preview to controller input (diff)
downloadyuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.gz
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.bz2
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.lz
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.xz
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.zst
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.zip
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:
z = std::sin(roll) * temp + std::cos(roll) * z;
temp = x;
- x = std::cosf(pitch) * x + std::sin(pitch) * z;
+ x = std::cos(pitch) * x + std::sin(pitch) * z;
z = -std::sin(pitch) * temp + std::cos(pitch) * z;
temp = x;