diff options
author | Lioncash <mathew1800@gmail.com> | 2020-12-03 16:25:10 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-12-03 16:26:30 +0100 |
commit | 774d7eab64108a8537c0d0db02744f8a11fa4618 (patch) | |
tree | fce451683f43ef429faf3c31c96e7bc33f4aec4d /src/input_common/mouse/mouse_input.h | |
parent | Merge pull request #5000 from lioncash/audio-error (diff) | |
download | yuzu-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 '')
-rw-r--r-- | src/input_common/mouse/mouse_input.h | 7 |
1 files changed, 3 insertions, 4 deletions
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 { |