diff options
| author | 2020-12-03 10:25:10 -0500 | |
|---|---|---|
| committer | 2020-12-03 10:26:30 -0500 | |
| commit | 774d7eab64108a8537c0d0db02744f8a11fa4618 (patch) | |
| tree | fce451683f43ef429faf3c31c96e7bc33f4aec4d /src/input_common | |
| parent | Merge pull request #5000 from lioncash/audio-error (diff) | |
| download | yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.gz yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.tar.xz yuzu-774d7eab64108a8537c0d0db02744f8a11fa4618.zip | |
mouse_input: Remove unused includes
Diffstat (limited to 'src/input_common')
| -rw-r--r-- | src/input_common/mouse/mouse_input.cpp | 3 | ||||
| -rw-r--r-- | src/input_common/mouse/mouse_input.h | 7 |
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 @@ | |||
| 2 | // Licensed under GPLv2+ | 2 | // Licensed under GPLv2+ |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "common/logging/log.h" | ||
| 6 | #include "common/math_util.h" | ||
| 7 | #include "common/param_package.h" | ||
| 8 | #include "input_common/mouse/mouse_input.h" | 5 | #include "input_common/mouse/mouse_input.h" |
| 9 | 6 | ||
| 10 | namespace MouseInput { | 7 | 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 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <algorithm> | 7 | #include <array> |
| 8 | #include <functional> | ||
| 9 | #include <mutex> | 8 | #include <mutex> |
| 10 | #include <thread> | 9 | #include <thread> |
| 11 | #include <unordered_map> | 10 | |
| 12 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| 13 | #include "common/threadsafe_queue.h" | 12 | #include "common/threadsafe_queue.h" |
| 13 | #include "common/vector_math.h" | ||
| 14 | #include "core/frontend/input.h" | 14 | #include "core/frontend/input.h" |
| 15 | #include "input_common/main.h" | ||
| 16 | #include "input_common/motion_input.h" | 15 | #include "input_common/motion_input.h" |
| 17 | 16 | ||
| 18 | namespace MouseInput { | 17 | namespace MouseInput { |