diff options
| author | 2017-08-09 03:05:03 +0300 | |
|---|---|---|
| committer | 2017-08-19 07:21:02 +0300 | |
| commit | 223bd354508a7bc88427d5b6f5245cfdf44011c7 (patch) | |
| tree | c1b99fe9b85f50c3234e87de08d657b1918c2f85 /src/input_common/motion_emu.cpp | |
| parent | move MotionEmu from core/frontend to input_common as a InputDevice (diff) | |
| download | yuzu-223bd354508a7bc88427d5b6f5245cfdf44011c7.tar.gz yuzu-223bd354508a7bc88427d5b6f5245cfdf44011c7.tar.xz yuzu-223bd354508a7bc88427d5b6f5245cfdf44011c7.zip | |
motion_emu: no need to include thread in header
Diffstat (limited to 'src/input_common/motion_emu.cpp')
| -rw-r--r-- | src/input_common/motion_emu.cpp | 6 |
1 files changed, 6 insertions, 0 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 | ||
| 9 | namespace InputCommon { | 15 | namespace InputCommon { |