summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/input_common/motion_emu.cpp6
-rw-r--r--src/input_common/motion_emu.h3
2 files changed, 7 insertions, 2 deletions
diff --git a/src/input_common/motion_emu.cpp b/src/input_common/motion_emu.cpp
index 65e80529d..a1761f184 100644
--- a/src/input_common/motion_emu.cpp
+++ b/src/input_common/motion_emu.cpp
@@ -2,8 +2,14 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <chrono>
6#include <mutex>
7#include <thread>
8#include <tuple>
5#include "common/math_util.h" 9#include "common/math_util.h"
6#include "common/quaternion.h" 10#include "common/quaternion.h"
11#include "common/thread.h"
12#include "common/vector_math.h"
7#include "input_common/motion_emu.h" 13#include "input_common/motion_emu.h"
8 14
9namespace InputCommon { 15namespace InputCommon {
diff --git a/src/input_common/motion_emu.h b/src/input_common/motion_emu.h
index 195fb69d2..7a7e22467 100644
--- a/src/input_common/motion_emu.h
+++ b/src/input_common/motion_emu.h
@@ -3,8 +3,7 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#pragma once 5#pragma once
6#include "common/thread.h" 6
7#include "common/vector_math.h"
8#include "core/frontend/input.h" 7#include "core/frontend/input.h"
9 8
10namespace InputCommon { 9namespace InputCommon {