diff options
Diffstat (limited to 'src/citra/emu_window/emu_window_sdl2.h')
| -rw-r--r-- | src/citra/emu_window/emu_window_sdl2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/citra/emu_window/emu_window_sdl2.h b/src/citra/emu_window/emu_window_sdl2.h index c8cd919c6..b1cbf16d7 100644 --- a/src/citra/emu_window/emu_window_sdl2.h +++ b/src/citra/emu_window/emu_window_sdl2.h | |||
| @@ -4,8 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | ||
| 7 | #include <utility> | 8 | #include <utility> |
| 8 | #include "core/frontend/emu_window.h" | 9 | #include "core/frontend/emu_window.h" |
| 10 | #include "core/frontend/motion_emu.h" | ||
| 9 | 11 | ||
| 10 | struct SDL_Window; | 12 | struct SDL_Window; |
| 11 | 13 | ||
| @@ -61,4 +63,7 @@ private: | |||
| 61 | 63 | ||
| 62 | /// Device id of keyboard for use with KeyMap | 64 | /// Device id of keyboard for use with KeyMap |
| 63 | int keyboard_id; | 65 | int keyboard_id; |
| 66 | |||
| 67 | /// Motion sensors emulation | ||
| 68 | std::unique_ptr<Motion::MotionEmu> motion_emu; | ||
| 64 | }; | 69 | }; |