diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-26 22:11:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 22:11:19 +0200 |
commit | efcb83fb4116ce08c766ef2ff69f2cb9328515db (patch) | |
tree | f1d5b1018fa766320ebef9ef10e0ba487f6840a6 /src/core/hle | |
parent | Merge pull request #1402 from ReinUsesLisp/asserts (diff) | |
parent | service: Add missing headers inclusions where applicable (diff) | |
download | yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar.gz yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar.bz2 yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar.lz yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar.xz yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.tar.zst yuzu-efcb83fb4116ce08c766ef2ff69f2cb9328515db.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/audio/audren_u.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/fatal/fatal.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/nim/nim.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/sm/controller.cpp | 3 |
5 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 80ed4b152..fa15712cf 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp @@ -10,6 +10,7 @@ #include "common/alignment.h" #include "common/common_funcs.h" #include "common/logging/log.h" +#include "core/core.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/hle_ipc.h" diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp index 6de7edf9e..2212b2cdd 100644 --- a/src/core/hle/service/fatal/fatal.cpp +++ b/src/core/hle/service/fatal/fatal.cpp @@ -6,11 +6,11 @@ #include <cstring> #include <ctime> #include <fmt/time.h> -#include "common/common_paths.h" #include "common/file_util.h" #include "common/logging/log.h" #include "common/scm_rev.h" #include "common/swap.h" +#include "core/core.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/process.h" #include "core/hle/service/fatal/fatal.h" diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index f8d2127d9..8c07a05c2 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "common/logging/log.h" +#include "core/core.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/event.h" #include "core/hle/service/hid/hid.h" diff --git a/src/core/hle/service/nim/nim.cpp b/src/core/hle/service/nim/nim.cpp index c1737defa..261ad539c 100644 --- a/src/core/hle/service/nim/nim.cpp +++ b/src/core/hle/service/nim/nim.cpp @@ -4,6 +4,7 @@ #include <chrono> #include <ctime> +#include "core/core.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/event.h" #include "core/hle/service/nim/nim.h" diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp index cdf328a26..98f6e4111 100644 --- a/src/core/hle/service/sm/controller.cpp +++ b/src/core/hle/service/sm/controller.cpp @@ -2,8 +2,11 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include "common/assert.h" #include "common/logging/log.h" #include "core/hle/ipc_helpers.h" +#include "core/hle/kernel/client_session.h" +#include "core/hle/kernel/server_session.h" #include "core/hle/kernel/session.h" #include "core/hle/service/sm/controller.h" |