diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-12-02 19:55:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-02 19:55:08 -0500 |
commit | 55d6b095e55956b297a47e03bcbe441e7f66d387 (patch) | |
tree | 2bc194dd512203bd40cd5f09428c63950f9e5779 /src/yuzu/applets/qt_controller.h | |
parent | 8a613f6c8f60d504d167970661b7a2a5e636c8d5 (diff) | |
parent | 5ba7b11ba49ecba530612248286482f94799672c (diff) |
Merge pull request #7452 from german77/controller_navigation
yuzu: Implement basic controller UI navigation
Diffstat (limited to 'src/yuzu/applets/qt_controller.h')
-rw-r--r-- | src/yuzu/applets/qt_controller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/applets/qt_controller.h b/src/yuzu/applets/qt_controller.h index cc343e5ae..7ab9ced3d 100644 --- a/src/yuzu/applets/qt_controller.h +++ b/src/yuzu/applets/qt_controller.h @@ -7,7 +7,6 @@ #include <array> #include <memory> #include <QDialog> -#include "core/core.h" #include "core/frontend/applets/controller.h" class GMainWindow; @@ -32,8 +31,9 @@ class System; } namespace Core::HID { +class HIDCore; enum class NpadStyleIndex : u8; -} +} // namespace Core::HID class QtControllerSelectorDialog final : public QDialog { Q_OBJECT |