summaryrefslogtreecommitdiffstats
path: root/src/input_common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-12-03 16:25:10 +0100
committerLioncash <mathew1800@gmail.com>2020-12-03 16:26:30 +0100
commit774d7eab64108a8537c0d0db02744f8a11fa4618 (patch)
treefce451683f43ef429faf3c31c96e7bc33f4aec4d /src/input_common
parentMerge pull request #5000 from lioncash/audio-error (diff)
downloadyuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.gz
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.bz2
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.lz
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.xz
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.zst
yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.zip
Diffstat (limited to 'src/input_common')
-rw-r--r--src/input_common/mouse/mouse_input.cpp3
-rw-r--r--src/input_common/mouse/mouse_input.h7
2 files changed, 3 insertions, 7 deletions
diff --git a/src/input_common/mouse/mouse_input.cpp b/src/input_common/mouse/mouse_input.cpp
index d0ee64ad7..055924087 100644
--- a/src/input_common/mouse/mouse_input.cpp
+++ b/src/input_common/mouse/mouse_input.cpp
@@ -2,9 +2,6 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
-#include "common/logging/log.h"
-#include "common/math_util.h"
-#include "common/param_package.h"
#include "input_common/mouse/mouse_input.h"
namespace MouseInput {
diff --git a/src/input_common/mouse/mouse_input.h b/src/input_common/mouse/mouse_input.h
index 761663334..6fc95a49e 100644
--- a/src/input_common/mouse/mouse_input.h
+++ b/src/input_common/mouse/mouse_input.h
@@ -4,15 +4,14 @@
#pragma once
-#include <algorithm>
-#include <functional>
+#include <array>
#include <mutex>
#include <thread>
-#include <unordered_map>
+
#include "common/common_types.h"
#include "common/threadsafe_queue.h"
+#include "common/vector_math.h"
#include "core/frontend/input.h"
-#include "input_common/main.h"
#include "input_common/motion_input.h"
namespace MouseInput {