summaryrefslogtreecommitdiffstats
path: root/src/input_common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-15 20:20:41 +0100
committerLioncash <mathew1800@gmail.com>2020-11-15 20:20:41 +0100
commit0a50ba3bd18b6227fda1dc066826eb9cc6948673 (patch)
treeabe87e21103917da2d93e2445807f92b5238a02e /src/input_common
parentmotion_input: Mark member functions as [[nodiscard]] where applicable (diff)
downloadyuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar.gz
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar.bz2
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar.lz
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar.xz
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.tar.zst
yuzu-0a50ba3bd18b6227fda1dc066826eb9cc6948673.zip
Diffstat (limited to 'src/input_common')
-rw-r--r--src/input_common/motion_input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/motion_input.h b/src/input_common/motion_input.h
index ce7ab7f9b..efe74cf19 100644
--- a/src/input_common/motion_input.h
+++ b/src/input_common/motion_input.h
@@ -13,7 +13,7 @@ namespace InputCommon {
class MotionInput {
public:
- MotionInput(f32 new_kp, f32 new_ki, f32 new_kd);
+ explicit MotionInput(f32 new_kp, f32 new_ki, f32 new_kd);
MotionInput(const MotionInput&) = default;
MotionInput& operator=(const MotionInput&) = default;