diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-14 22:27:01 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-15 01:41:35 -0400 |
commit | c8e3f98c27b15055d033ab75c75c8b3e0455a40e (patch) | |
tree | a6709c16e5d97822be7001b03ba5c18582877b32 /src/core/loader/xci.cpp | |
parent | d1520410a3cf38a14cd3f3b1dc3fcc5ae38c6b0b (diff) |
loader/xci: Remove unnecessary includes and member variables
Many of these aren't necessary and will cause this file to be required
to be recompiled whenever any changes to those files are made, which
lengthens compile times for no reason.
This also removes an unused metadata variable from AppLoader_XCI
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 5d67fb1862..4c49795454 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 { |