summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ir
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-06-06 01:29:46 -0700
committerGravatar Yuri Kunde Schlesner2017-06-06 02:57:23 -0700
commitd96a9e0c11d653a88bfee53e7ff11c4ba7a159a7 (patch)
tree3219885089d1d9c4aa56c98d5f00206b19832305 /src/core/hle/service/ir
parentService: Make service registration part of the sm implementation (diff)
downloadyuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.gz
yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.xz
yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.zip
Service: Remove unnecessary includes from service.h
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
Diffstat (limited to 'src/core/hle/service/ir')
-rw-r--r--src/core/hle/service/ir/ir_rst.cpp1
-rw-r--r--src/core/hle/service/ir/ir_user.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/ir/ir_rst.cpp b/src/core/hle/service/ir/ir_rst.cpp
index 53807cd91..0de698003 100644
--- a/src/core/hle/service/ir/ir_rst.cpp
+++ b/src/core/hle/service/ir/ir_rst.cpp
@@ -6,6 +6,7 @@
6#include "common/bit_field.h" 6#include "common/bit_field.h"
7#include "core/core_timing.h" 7#include "core/core_timing.h"
8#include "core/frontend/input.h" 8#include "core/frontend/input.h"
9#include "core/hle/ipc_helpers.h"
9#include "core/hle/kernel/event.h" 10#include "core/hle/kernel/event.h"
10#include "core/hle/kernel/shared_memory.h" 11#include "core/hle/kernel/shared_memory.h"
11#include "core/hle/service/hid/hid.h" 12#include "core/hle/service/hid/hid.h"
diff --git a/src/core/hle/service/ir/ir_user.cpp b/src/core/hle/service/ir/ir_user.cpp
index 369115f09..fdecdce64 100644
--- a/src/core/hle/service/ir/ir_user.cpp
+++ b/src/core/hle/service/ir/ir_user.cpp
@@ -7,6 +7,7 @@
7#include <boost/optional.hpp> 7#include <boost/optional.hpp>
8#include "common/string_util.h" 8#include "common/string_util.h"
9#include "common/swap.h" 9#include "common/swap.h"
10#include "core/hle/ipc_helpers.h"
10#include "core/hle/kernel/event.h" 11#include "core/hle/kernel/event.h"
11#include "core/hle/kernel/shared_memory.h" 12#include "core/hle/kernel/shared_memory.h"
12#include "core/hle/service/ir/extra_hid.h" 13#include "core/hle/service/ir/extra_hid.h"