diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-15 04:27:01 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-15 07:41:35 +0200 |
commit | c8e3f98c27b15055d033ab75c75c8b3e0455a40e (patch) | |
tree | a6709c16e5d97822be7001b03ba5c18582877b32 /src/core/loader/xci.cpp | |
parent | Merge pull request #1055 from lioncash/init (diff) | |
download | yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar.gz yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar.bz2 yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar.lz yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar.xz yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.tar.zst yuzu-c8e3f98c27b15055d033ab75c75c8b3e0455a40e.zip |
Diffstat (limited to 'src/core/loader/xci.cpp')
-rw-r--r-- | src/core/loader/xci.cpp | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/core/loader/xci.cpp b/src/core/loader/xci.cpp index 5d67fb186..4c4979545 100644 --- a/src/core/loader/xci.cpp +++ b/src/core/loader/xci.cpp @@ -4,22 +4,14 @@ #include <vector> -#include "common/file_util.h" -#include "common/logging/log.h" -#include "common/string_util.h" -#include "common/swap.h" -#include "core/core.h" +#include "common/common_types.h" +#include "core/file_sys/card_image.h" #include "core/file_sys/content_archive.h" #include "core/file_sys/control_metadata.h" -#include "core/file_sys/program_metadata.h" #include "core/file_sys/romfs.h" -#include "core/gdbstub/gdbstub.h" #include "core/hle/kernel/process.h" -#include "core/hle/kernel/resource_limit.h" -#include "core/hle/service/filesystem/filesystem.h" -#include "core/loader/nso.h" +#include "core/loader/nca.h" #include "core/loader/xci.h" -#include "core/memory.h" namespace Loader { |