summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-06 22:38:59 +0100
committerGitHub <noreply@github.com>2024-01-06 22:38:59 +0100
commit12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92 (patch)
tree3b95cbb74be05f0ce7a007353f1f9f95e1ed3901 /src/core/hle/service/am/am.cpp
parentMerge pull request #12437 from ameerj/gl-amd-fixes (diff)
parenthid_core: Move hid to it's own subproject (diff)
downloadyuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar.gz
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar.bz2
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar.lz
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar.xz
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.tar.zst
yuzu-12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92.zip
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 97eb56ff0..9e05bdafa 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -13,7 +13,6 @@
#include "core/file_sys/patch_manager.h"
#include "core/file_sys/registered_cache.h"
#include "core/file_sys/savedata_factory.h"
-#include "core/hid/hid_types.h"
#include "core/hle/kernel/k_event.h"
#include "core/hle/kernel/k_transfer_memory.h"
#include "core/hle/result.h"
@@ -37,7 +36,6 @@
#include "core/hle/service/caps/caps_su.h"
#include "core/hle/service/caps/caps_types.h"
#include "core/hle/service/filesystem/filesystem.h"
-#include "core/hle/service/hid/controllers/npad.h"
#include "core/hle/service/ipc_helpers.h"
#include "core/hle/service/ns/ns.h"
#include "core/hle/service/nvnflinger/fb_share_buffer_manager.h"
@@ -48,6 +46,8 @@
#include "core/hle/service/vi/vi.h"
#include "core/hle/service/vi/vi_results.h"
#include "core/memory.h"
+#include "hid_core/hid_types.h"
+#include "hid_core/resources/npad/npad.h"
namespace Service::AM {