diff options
author | archshift <admin@archshift.com> | 2014-09-09 02:52:00 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-09-09 02:54:14 +0200 |
commit | 6e606c515f56b456a8031b235fd4f8d8453483a4 (patch) | |
tree | 1e603b1ed4c0c65db72dc74b7142c622df41d069 /src/core/hle/service | |
parent | common: Prune all redundant includes (diff) | |
download | yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.gz yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.bz2 yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.lz yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.xz yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.zst yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/fs.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/gsp.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/ndm.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/service.cpp | 5 | ||||
-rw-r--r-- | src/core/hle/service/srv.cpp | 1 |
5 files changed, 0 insertions, 11 deletions
diff --git a/src/core/hle/service/fs.cpp b/src/core/hle/service/fs.cpp index 5eabf36ad..9e1998b0f 100644 --- a/src/core/hle/service/fs.cpp +++ b/src/core/hle/service/fs.cpp @@ -4,8 +4,6 @@ #include "common/common.h" -#include "core/loader/loader.h" -#include "core/hle/hle.h" #include "core/hle/service/fs.h" #include "core/hle/kernel/archive.h" diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp index 46c5a8ddd..accbe84e3 100644 --- a/src/core/hle/service/gsp.cpp +++ b/src/core/hle/service/gsp.cpp @@ -7,7 +7,6 @@ #include "common/bit_field.h" #include "core/mem_map.h" -#include "core/hle/hle.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/shared_memory.h" #include "core/hle/service/gsp.h" diff --git a/src/core/hle/service/ndm.cpp b/src/core/hle/service/ndm.cpp index 48755b6a7..f6af0a153 100644 --- a/src/core/hle/service/ndm.cpp +++ b/src/core/hle/service/ndm.cpp @@ -2,8 +2,6 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "common/log.h" - #include "core/hle/hle.h" #include "core/hle/service/ndm.h" diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 00ac1c9c6..9eb1726aa 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -3,11 +3,8 @@ // Refer to the license.txt file included. #include "common/common.h" -#include "common/log.h" #include "common/string_util.h" -#include "core/hle/hle.h" - #include "core/hle/service/service.h" #include "core/hle/service/apt.h" #include "core/hle/service/fs.h" @@ -16,8 +13,6 @@ #include "core/hle/service/ndm.h" #include "core/hle/service/srv.h" -#include "core/hle/kernel/kernel.h" - namespace Service { Manager* g_manager = nullptr; ///< Service manager diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp index 23be3cf2c..eb2c73f93 100644 --- a/src/core/hle/service/srv.cpp +++ b/src/core/hle/service/srv.cpp @@ -4,7 +4,6 @@ #include "core/hle/hle.h" #include "core/hle/service/srv.h" -#include "core/hle/service/service.h" #include "core/hle/kernel/event.h" //////////////////////////////////////////////////////////////////////////////////////////////////// |