summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar Lioncash2018-09-03 21:58:19 -0400
committerGravatar Lioncash2018-09-03 22:52:24 -0400
commita813c10e1c71318925f2e65f2b0926099485bbc4 (patch)
treefc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/hle
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.gz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.xz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.zip
file_sys: Replace includes with forward declarations where applicable
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/ns/pl_u.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/pl_u.cpp b/src/core/hle/service/ns/pl_u.cpp
index 51638793d..878bbe439 100644
--- a/src/core/hle/service/ns/pl_u.cpp
+++ b/src/core/hle/service/ns/pl_u.cpp
@@ -5,7 +5,9 @@
5#include "common/common_paths.h" 5#include "common/common_paths.h"
6#include "common/file_util.h" 6#include "common/file_util.h"
7#include "core/core.h" 7#include "core/core.h"
8#include "core/file_sys/bis_factory.h" 8#include "core/file_sys/content_archive.h"
9#include "core/file_sys/nca_metadata.h"
10#include "core/file_sys/registered_cache.h"
9#include "core/file_sys/romfs.h" 11#include "core/file_sys/romfs.h"
10#include "core/hle/ipc_helpers.h" 12#include "core/hle/ipc_helpers.h"
11#include "core/hle/service/filesystem/filesystem.h" 13#include "core/hle/service/filesystem/filesystem.h"