summaryrefslogtreecommitdiffstats
path: root/src/input_common/mouse/mouse_input.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-03 19:24:54 +0100
committerGitHub <noreply@github.com>2020-12-03 19:24:54 +0100
commit843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666 (patch)
treebe233f27eb9502b1489db99a1448eb0a9cd33e96 /src/input_common/mouse/mouse_input.h
parentMerge pull request #5000 from lioncash/audio-error (diff)
parentmouse_poller: Remove unused includes (diff)
downloadyuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar.gz
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar.bz2
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar.lz
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar.xz
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.tar.zst
yuzu-843ef8f2ec8b1645e7aa5eec7fcc8a76f0d3b666.zip
Diffstat (limited to 'src/input_common/mouse/mouse_input.h')
-rw-r--r--src/input_common/mouse/mouse_input.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/input_common/mouse/mouse_input.h b/src/input_common/mouse/mouse_input.h
index 761663334..65e64bee7 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 {
@@ -50,7 +49,7 @@ public:
* Signals that a button is pressed.
* @param x the x-coordinate of the cursor
* @param y the y-coordinate of the cursor
- * @param button the button pressed
+ * @param button_ the button pressed
*/
void PressButton(int x, int y, int button_);