summaryrefslogtreecommitdiff
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/bootmanager.h')
-rw-r--r--src/citra_qt/bootmanager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/bootmanager.h b/src/citra_qt/bootmanager.h
index 43015390b..7dac1c480 100644
--- a/src/citra_qt/bootmanager.h
+++ b/src/citra_qt/bootmanager.h
@@ -11,6 +11,7 @@
11#include <QThread> 11#include <QThread>
12#include "common/thread.h" 12#include "common/thread.h"
13#include "core/frontend/emu_window.h" 13#include "core/frontend/emu_window.h"
14#include "core/frontend/motion_emu.h"
14 15
15class QKeyEvent; 16class QKeyEvent;
16class QScreen; 17class QScreen;
@@ -156,6 +157,9 @@ private:
156 157
157 EmuThread* emu_thread; 158 EmuThread* emu_thread;
158 159
160 /// Motion sensors emulation
161 std::unique_ptr<Motion::MotionEmu> motion_emu;
162
159protected: 163protected:
160 void showEvent(QShowEvent* event) override; 164 void showEvent(QShowEvent* event) override;
161}; 165};