summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar bunnei2020-09-02 12:49:39 -0400
committerGravatar GitHub2020-09-02 12:49:39 -0400
commit98913986e7ab43c8672fc5597de47ecb58e77483 (patch)
tree4c76baa8419fa8cb23c7c6ad2fa12a70d3c75426 /src/common
parentMerge pull request #4570 from german77/motionInput (diff)
parentinput_common/motion_input: Make use of Common::PI constant (diff)
downloadyuzu-98913986e7ab43c8672fc5597de47ecb58e77483.tar.gz
yuzu-98913986e7ab43c8672fc5597de47ecb58e77483.tar.xz
yuzu-98913986e7ab43c8672fc5597de47ecb58e77483.zip
Merge pull request #4621 from Morph1984/use-pi
input_common/motion_input: Make use of Common::PI constant
Diffstat (limited to 'src/common')
-rw-r--r--src/common/math_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h
index cc35c90ee..b35ad8507 100644
--- a/src/common/math_util.h
+++ b/src/common/math_util.h
@@ -9,7 +9,7 @@
9 9
10namespace Common { 10namespace Common {
11 11
12constexpr float PI = 3.14159265f; 12constexpr float PI = 3.1415926535f;
13 13
14template <class T> 14template <class T>
15struct Rectangle { 15struct Rectangle {