aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem/fsp_srv.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 10:48:24 -0400
committerLioncash <mathew1800@gmail.com>2018-08-21 15:06:42 -0400
commit29ac15d1b8501a7c1f710423d777c0ebf703f24a (patch)
tree4e08bdb6423ecc01f693b7b2401de059b33bfbe3 /src/core/hle/service/filesystem/fsp_srv.cpp
parentc95c4442e939b38fb60430b93b89c292bb43078f (diff)
vfs: Replace mode.h include with forward declarations where applicable
Avoids the need to rebuild these source files if the mode header changes.
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.cpp')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 8ece74d7e..5759299fe 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -15,6 +15,7 @@
#include "common/string_util.h"
#include "core/file_sys/directory.h"
#include "core/file_sys/errors.h"
+#include "core/file_sys/mode.h"
#include "core/file_sys/nca_metadata.h"
#include "core/file_sys/savedata_factory.h"
#include "core/file_sys/vfs.h"